@media (max-width: 991px) {
    nav .nav-list {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        display: inline-block;
        background-color: #f5f5f5;
        border-radius: 0 0 0 8px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding-top: 60px;
        z-index: 1001;
        gap: 0;
    }

    nav .nav-list.open {
        transform: translateX(0);
    }

    nav .nav-list a {
        padding: 16px 20px;
        border-bottom: 1px solid #a4a3a3;
        font-size: 1.2rem;
        display: block;
        border-radius: unset;
    }

    .hamburger {
        display: flex;
    }
}

@media screen and (max-width: 567px) {
    .logo img {
    width: 220px;
}

    .section-title,
    .cta-section h2 {
        font-size: 28px;
    }

    h1 {
        font-size: 30px;
    }

    .cta-section .btn {
        font-size: 18px;
    }

    .faq-question {
        padding: 14px 20px;
    }

    .help-card .icon {
        font-size: 30px;
        padding: 12px;
    }

    .faq-question-text {
        font-size: 18px;
        line-height: 22px;
    }
}