﻿
.faq-section {
    padding: 80px 0 60px 0;
    background: #f8fafc;
        margin-top: 60px;
}

    .faq-section .section-title {
        color: orange;
        font-weight: 700;
        font-size: 28px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

.faq-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.faq-button {
    width: 100%;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all .35s ease;
}

    .faq-button:hover {
        background: rgba(255,255,255,0.06);
    }

    .faq-button::after {
        content: "+";
        float: right;
        font-size: 16px;
        font-weight: 400;
        color: orange
    }

    .faq-button.active::after {
        content: "–";
        color: orange;
    }

.faq-body {
    padding: 22px 28px 30px;
    font-size: 16px;
    line-height: 1;
    color: black;
}

.faq-collapse {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

    .faq-collapse.open {
        max-height: 500px;
        opacity: 1;
    }

@media (max-width: 768px) {
    .faq-section .section-title {
        font-size: 24px;
    }

    .faq-button {
        font-size: 16px;
        padding: 20px 22px;
    }

    .faq-body {
        font-size: 15px;
        padding: 18px 22px 24px;
    }
}

.faq-media-wrapper {
    text-align: center;
    margin-top: 40px;
}

.faq-media-link {
    display: inline-block;
    font-size: 16px;
    color: orange;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .faq-media-link:hover {
        text-decoration: underline;
    }
