:root {
    --navy-blue: #002C54;
    --light-blue: #4A90E2;
    --white: #FFFFFF;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    color: var(--navy-blue);
    margin-bottom: 0.5em;
    font-weight: 700;
}

p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2em;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--navy-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #001f3d;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--light-blue);
    border-color: var(--light-blue);
}

.btn-secondary:hover {
    background-color: var(--light-blue);
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}
.logo-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper img {
    max-width: 180px;
    height: auto;
    display: block;
}