.faqs-section {
    padding: 40px 20px;
    background-color: #171717;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.faqs-container {
    max-width: 1168px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card {
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 1168px;
    padding: 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 109px;
}

.faq-question {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #171717;
    margin: 0;
    text-align: left;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: #171717;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-toggle .icon {
    font-size: 24px;
    font-weight: bold;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    display: none;
    margin-top: 10px;
    padding-bottom: 20px;
}

.faq-card.active .faq-answer {
    display: block;
}

.faq-card.active .faq-toggle .icon {
    transform: rotate(45deg);
}

.no-faqs {
    text-align: center;
    font-size: 16px;
    color: #aaa;
}

@media (max-width: 1024px) {
    .faq-card {
        max-width: 800px;
        padding: 0 15px;
    }
    .faq-header {
        height: 90px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-toggle .icon {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .faq-card {
        max-width: 600px;
        padding: 0 10px;
    }
    .faq-header {
        height: 80px;
    }
    .faq-question {
        font-size: 14px;
    }
    .faq-toggle .icon {
        font-size: 18px;
    }
    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-card {
        max-width: 100%;
        padding: 0 5px;
    }
    .faq-header {
        height: 70px;
    }
    .faq-question {
        font-size: 12px;
    }
    .faq-toggle .icon {
        font-size: 16px;
    }
    .faq-answer {
        font-size: 12px;
    }
}
