
    .faq-section {
        max-width: 1000px;
        margin: 60px auto;
    }

    .faq-section h2 {
        text-align: center;
        font-weight: 700;
        color: #0056d6;
        margin-bottom: 10px;
    }

    .faq-section>p {
        text-align: center;
        margin-bottom: 35px;
    }

    .faq-item {
        background: #fff;
        border-radius: 12px;
        margin-bottom: 18px;
        overflow: hidden;
        border: 1px solid #ececec;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .05);
        transition: .3s;
    }

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }

    .faq-question {
        width: 100%;
        border: none;
        background: #fff;
        padding: 6px 20px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        color: #222;
        transition: .25s;
    }

    .faq-item.active .faq-question {
        color: #0056d6;
    }

    .faq-toggle {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #0056d6;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-weight: bold;
        transition: .3s;
        flex-shrink: 0;
    }

    .faq-item.active .faq-toggle {
        transform: rotate(45deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
        padding: 0 25px;
    }

    .faq-item.active .faq-answer {
        max-height: 800px;
        padding: 5px 25px 25px;
    }

    .faq-answer p {
        line-height: 1.9;
        margin: 14px 0;
        font-size: 14px;
    }

    .faq-answer ul {
        padding-left: 22px;
    }

    .faq-answer li {
        margin: 10px 0;
        line-height: 1.8;
    }



    .faq-answer a {
        color: #0056d6;
        text-decoration: none;
    }

    .faq-answer a:hover {
        text-decoration: underline;
    }

    @media(max-width:768px) {

        .faq-section {
            margin: 35px auto;
        }

        .faq-section h2 {
            color: #ff6600;
        }

        .faq-question {
            font-size: 14px;
            padding: 5px 16px;
        }

        .faq-answer {
            padding: 0 18px;
        }

        .faq-item.active .faq-answer {
            padding: 5px 18px 18px;
        }

        .faq-answer p,
        .faq-answer li {
            font-size: 14px;
        }

        .faq-toggle {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

    }