.collapse-section {
    /* background: linear-gradient(0deg, rgba(0, 141, 183, 0.10) 3.57%, rgba(243, 244, 246, 0.00) 182.37%); */
    background: linear-gradient(0deg, rgba(0, 141, 183, 0.1) 24.69%, rgba(243, 244, 246, 0) 104.53%);

    padding: 0;
    padding-bottom: 35px;
    /* .container{
        background: linear-gradient(0deg, rgba(0, 141, 183, 0.10) 3.57%, rgba(243, 244, 246, 0.00) 182.37%);
    } */

    .title-section {
        max-width: 560px;
        margin: 0 auto;
    }

    .accordion {
        width: 100%;
        max-width: 896px;
        margin: 0 auto;
    }

    .accordion-item {
        margin-bottom: 10px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    input[type="checkbox"] {
        display: none;
    }

    .accordion-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        background: #ffffff;
        cursor: pointer;
        font-weight: bold;
        /* transition: background 0.3s ease; */

        color: var(--primary-color);
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
    }

    .accordion-label:hover {
        background: #eef4fa;
    }

    .accordion-label::after {
        content: '+';
        font-size: 20px;
        color: #003366;
        transition: transform 0.3s ease;
    }

    input:checked+.accordion-label::after {
        content: '-';
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        background: #ffffff;
        transition: max-height 0.5s ease, padding 0.3s ease;

        .accordion-content-inner {
            padding: 24px;

            p {
                color: var(--primary-color);
                font-family: "Public Sans";
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 20px;
            }
        }
    }

    input:checked~.accordion-content {
        max-height: 300px;
    }



    .read-more {
        margin-top: 30px;
        padding: 12px 30px;
        background: #003366;
        color: #ffffff;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s ease;
    }

    .read-more:hover {
        background: #002244;
    }

}

@media screen and (max-width: 768px) {
    .collapse-section {
        padding: 20px;

        .accordion {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }

        .accordion-label {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
        }

        /* .accordion-content {
            padding: 12px;
        } */
    }
}