    /* Variables */
    :root {
        --primary-blue: #C2D7FF;
        --primary-green: #477D4D;
        --text-gray: #222222;
        --text-light: #F7F7F7;
        --bg-dark: #333333;
    }

    /* Base styles */
    body {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: Inter, Sans-serif;
    }

    .page-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        
    }

    /* Header styles */
    header {
    width: 100%;
    position: sticky;
    top: 0;
    height: auto;
    z-index: 1000;
    background-color: var(--primary-blue);
    
    }

    .menu {
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo a {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 21.23px;
    line-height: 18.87px;
    letter-spacing: 0%;
    color: #222222;
    margin-left: 40px;
    text-decoration: none;
}

    .nav-links {
        margin-left: auto;
        font-family: Inter, Sans-serif;
        margin-right: 40px;
        display: flex;
        font-weight: 500;
        font-size: 20px;
        align-items: center;
        transition: all 0.3s ease;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-gray);
        transition: color 0.3s ease;
        padding: 0 10px;
    }

    .nav-links a:hover {
        color: var(--primary-green);
    }

    .auth-section {
        display: flex;
        align-items: center;
    }

    .auth-button img {
        height: 40px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .auth-button img:hover {
        transform: scale(1.05);
    }

    .styled-button {
        background-color: var(--primary-green);
        font-family: Inter, Sans-serif;
        font-size: 20px;
        color: white;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 4px;
        display: inline-block;
    }

    .mobile-menu-button {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* Footer styles */
    .footer {
        background-color: var(--bg-dark);
        font-family: Inter, Sans-serif;
        color: var(--text-light);
        width: 100%;
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 40px;
        box-sizing: border-box;
    }

    .footer-info {
        padding: 40px;
    }

    .footer-info h2 {
        color: white;
        font-size: 18px;
        margin-top: 0;
    }

    .footer-info p {
        color: var(--text-light);
        font-size: 18px;
        opacity: 0.5;
        margin-bottom: 0;
    }

    .footer-columns {
        display: flex;
        gap: 60px;
        padding: 40px;
    }

    .column h2 {
        color: white;
        font-size: 18px;
        font-family: Inter, sans-serif;
        text-decoration: underline;
    }

    .footer-links p {
        margin: 8px 0;
    }

    .footer-link {
        color: var(--text-light);
        text-decoration: none;
        opacity: 0.7;
        transition: opacity 0.3s;
        font-size: 18px;
    }

    .footer-link:hover {
        opacity: 1;
        color: lightgreen;
    }

    /* Animations */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    

    /* Mobile styles */
    @media screen and (max-width: 768px) {
        /* Mobile navigation */
        .mobile-menu-button {
            display: block;
        }

        .menu {
            padding: 20px 10px;
        }

        .logo a {
            margin-left: 20px;
            font-family: Inter, Sans-serif;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            background-color: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
            display: flex;
            animation: slideDown 0.3s forwards;
        }

        .nav-links a {
            padding: 10px 0;
            text-align: center;
        }

        /* Mobile authentication */
        .auth-button {
            height: 30px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            padding: 2px;
        }

        /* Mobile footer */
        .footer {
            display: block;
            text-align: center;
            padding: 20px;
            flex-direction: column;
        }

        .footer-columns {
            flex-direction: column;
            gap: 30px;
            padding: 20px 40px;
        }

        .footer .column {
            display: none;
        }

        /* Mobile images */
        .image-container {
            padding: 0;
            margin: 0;
        }

        .image-container img {
            width: 100%;
            max-width: 100%;
            margin: 0;
        }
    }