* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #202249;
    line-height: 1.6;
    padding-top: 80px;
}

header {
    background-color: #202249;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 20px rgba(32, 34, 73, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header .logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

header .logo img {
    height: 45px;
    width: auto;
}

header .logo:hover {
    transform: scale(1.05);
}

header nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

header nav a:not(.cta-button):hover {
    color: #ebcc00;
}

header nav a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ebcc00;
    transition: width 0.3s ease;
}

header nav a:not(.cta-button):hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #ebcc00, #f5d700);
    color: #202249;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(235, 204, 0, 0.3);
    font-size: 0.95rem;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d4b700, #ebcc00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 204, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #202249;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-menu nav a {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu nav a:not(.cta-button):hover {
    color: #ebcc00;
    background-color: rgba(235, 204, 0, 0.1);
}

.mobile-menu nav a:last-child {
    border-bottom: none;
}

.mobile-menu nav a.cta-button {
    margin: 0.5rem 2rem;
    width: calc(100% - 4rem);
    text-align: center;
    border-bottom: none;
}

footer {
    background-color: #1a1a3d;
    color: white;
    text-align: center;
    padding: 2rem 2rem 1rem;
    font-size: 0.9rem;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #ebcc00;
}

footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    header .logo img {
        height: 38px;
    }

    header nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    footer .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }

    header {
        padding: 0.8rem 1rem;
    }

    header .logo img {
        height: 32px;
    }

    .mobile-menu {
        top: 70px;
    }

    footer .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}