.collapse-section{
    padding-bottom: 50px;
    h2{
        font-size: 34px;
        line-height: 1.5;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 10px;
    }
    .single-collapse{
        border-top: 2px solid #e8e6e4;
        &:last-child{
            border-bottom: 2px solid #e8e6e4;
        }
        .accordion-content{
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
            &:not(.active){
                max-height: 0;
            }
            .accordion-content-inner{
                padding: 10px 20px;
                background-color: transparent;
                font-size: 16px;
                color: #1c1b1b;
                transition: all 0.3s ease-in-out;
                @media (min-width: 1024px){
                    padding: 10px 30px 60px;
                }
                a{
                    margin-bottom: 4px;
                    &:hover, &:active{
                        font-weight: 600;
                        text-decoration: underline;
                    }
                }
                table{
                    border-collapse: collapse;
                    tr{
                        display: block;
                        @media (min-width: 768px){
                            display: table-row;
                        }
                        th, td{
                            display: block;
                            padding: 1rem 0;
                            @media (min-width: 768px){
                                display: table-cell;
                                padding: 23px 0 21px;
                            }
                        }
                        th{
                            vertical-align: top;
                            min-width: 200px;
                            max-width: 300px;
                            font-weight: 500;
                            font-size: 16px;
                            line-height: 1.68;
                            text-align: left;
                        }
                        td{
                            width: 100%;
                            font-size: 16px;
                            line-height: 1.68;
                            @media (min-width: 768px){
                                padding-left: 85px;
                            }
                        }
                        &:not(:first-child){
                            border-top: 1px solid #d8d8d8;
                        }
                    }
                }
            }
        }
        .accordion-header{
            a{
                font-weight: 500;
                position: relative;
                text-decoration: none;
                background-color: transparent;
                cursor: pointer;
                line-height: 1.3;
                transition: all 0.3s ease-in-out;
                color: #002c5f;
                padding: 20px 50px 20px 20px;
                font-size: 18px;
                display: flex;
                align-items: center;
                @media (min-width: 1024px){
                    font-size: 20px;
                    padding: 30px 70px 30px 30px;
                }
                &:before, &:after{
                    content: "";
                    display: block;
                    position: absolute;
                    transition: all 0.3s ease-in-out;
                    background-color: #002c5f;
                    height: 2px;
                    top: 50%;
                    width: 10px;
                }
                &:before{
                    transform: rotate(45deg);
                    right: 26px;
                }
                &:after{
                    transform: rotate(135deg);
                    right: 20px;
                }
                &:hover, &:active{
                    background-color: #fff;
                }
                &.active{
                    background-color: #fff;
                    &:before{
                        transform: rotate(-45deg);
                    }
                    &:after{
                        transform: rotate(225deg);
                    }
                }
            }
            &:has(.active){
                & ~ .accordion-content {
                    .accordion-content-inner{
                        background-color: #fff;
                    }
                }
            }
        }
    }
    &.type-2{
        padding: 70px 0 70px;
        @media (min-width: 768px){
            padding: 90px 0 90px;
        }
        @media (min-width: 1024px){
            padding: 110px 0 110px;
        }
        h2{
            margin-bottom: 70px;
            @media (min-width: 768px){
                margin-bottom: 90px;
            }
            @media (min-width: 1024px){
                margin-bottom: 110px;
            }
        }
        .accordion-header{
            a{
                &:hover, &:active, &.active{
                    background-color: #f6f3f2;
                }
            }
            &:has(.active){
                & ~ .accordion-content {
                    .accordion-content-inner{
                        background-color: #f6f3f2;
                    }
                }
            }
        }
        .accordion-content{
            .accordion-content-inner{
                p{
                    a{
                        color: #002c5f;
                        font-weight: bold;
                    }
                }
            }
        }
    }
}