.hero {
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 70px 5vw;
}

.log_in_bar {
    background-color: #131313;
    color: #00ffe0;
    text-align: right;
    padding: 10px 4vw;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #333;
    white-space: nowrap;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.log_in_bar a {
    color: #00ffe0;
    margin-left: 8px;
    text-decoration: none;
    padding: 0 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.log_in_bar a img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #93e6dc;
    margin-top: 0px;
}

.log_in_bar a:hover {
    color: #00c8b4;
    text-decoration: underline;
}


.icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
}

.sign-in-button {
    color: #fffb00 !important;
    text-decoration: none !important;
    cursor: default !important;
}

.faq {
    background-color: #000000;
    padding: 60px 5vw;
    color: #fff;
    max-width: 100%;
    margin: 0 auto;
}

.faq h1 {
    font-size: clamp(28px, 5vw, 48px);
    color: #93e6dc;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-family: var(--font1);
    text-align: left;
    cursor: pointer;
    padding: 10px 0;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    color: #ccc;
    font-size: 16px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 20px;
    }

    nav {
        margin-top: 10px;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 40px 7vw;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero p {
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
        font-size: 14px;
    }

    .info {
        padding: 40px 20px;
    }

    .info h1 {
        font-size: 32px;
        max-width: 100%;
    }

    .info p {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
    }

    .btn {
        height: 60px;
        font-size: 20px;
    }

    .small-text {
        font-size: 12px;
        margin-left: 10px;
        margin-bottom: 6px;
    }


    .site-footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    nav.main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
        padding: 10px 0;
        gap: 10px;
    }

    nav.main-nav.show {
        display: flex;
    }

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