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

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #202124;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 40px;
}

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
    text-decoration: none;
}

.nav-links.active {
    display: flex;
    height: auto;
    text-decoration: none;
}

.nav-links li {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
    text-decoration: none;
    list-style: none;
}

.nav-links a {
    color: #5f6368;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 24px;
}

.nav-links a:hover {
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.08);
}

.social-icons {
    display: flex;
    gap: 0.1rem;
    align-items: center;
    margin-right: 0.1rem;
}
.social-icons a {
    color: black;
    font-size: 1rem;
}

.separator {
    margin: 2rem 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.menu-toggle svg {
    width: 100%;
    height: 100%;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7rem 2rem 4rem;
    text-align: center;
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #4285f4, #1a73e8);
    z-index: 1001;
    transition: width 0.1s ease;
}

@media (max-width: 576px) {
    nav {
        padding: 0.5rem 1rem;
    }

    .logo-img {
        height: 30px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
        align-items: center;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-links a {
        padding: 0.8rem 1rem;
        display: block;
    }

    .nav-links .cta-outline {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
        margin: 0.5rem 0;
    }

    .menu-toggle {
        display: flex;
    }
    
    main {
        padding: 6rem 0.5rem 2rem;
    }
}

@media (min-width: 577px) {
    .nav-links {
        display: flex !important;
        height: auto !important;
        overflow: visible !important;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        position: static;
        width: auto;
        padding: 0;
        background: none;
        backdrop-filter: none;
    }

    .nav-links li {
        width: auto;
        margin: 0;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
    }

    .nav-links li:has(a.cta-outline) {
        margin-left: 2rem;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .menu-toggle {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    margin-left: 10px;
}

footer {
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-links a {
    color: #5f6368;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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