body {
    background-color: #fff;
}

.main-container {
    max-width: 1500px;
    margin: 160px auto 0;
}

.list-header-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.list-box:nth-child(even) .list-header{
    background-color: rgba(173,216,230,0.2);
}



.list-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.list-header h1 {
    font-size: 25px;
    font-weight: 500;
    color: #1A2D4C;
    margin: 0;
    line-height: 1.3;
}

.list-header p {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.list-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 18px;
    border-radius: 5px;
    background-color: #2e5ca5;
    color: #fff;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.list-btn:hover {
    background-color: #1e4a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 92, 165, 0.3);
}

.list-content {
    overflow: hidden;
    margin-top: 30px;
}




/* Price List Header */
.price-list-header {
    text-align: center;
    background: #fff;
    margin-bottom: 30px;
}

.price-list-title {
    font-size: 42px;
    font-weight: 700;
    color: #1A2D4C;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.price-list-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    font-style: italic;
}

/* Price Table Section */
.price-table-section {
    padding: 0 0px 60px;
    max-width: 1500px;
    margin: 0 auto;
}

.price-table-wrapper {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.price-table thead {
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.9) 0%, rgba(173, 216, 230, 0.7) 100%);
}

.price-table thead th {
    padding: 18px 12px;
    text-align: center;
    font-weight: 600;
    color: #1A2D4C;
    font-size: 15px;
    border-bottom: 2px solid rgba(173, 216, 230, 0.5);
    white-space: nowrap;
}

.price-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.price-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

.price-table tbody tr:hover {
    background-color: rgba(173, 216, 230, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-table tbody td {
    padding: 16px 12px;
    text-align: center;
    color: #212529;
    font-size: 15px;
    border-right: 1px solid #f1f5f9;
}

.price-table tbody td:first-child {
    font-weight: 600;
    color: #1A2D4C;
    text-align: left;
    padding-left: 20px;
    border-right: 2px solid rgba(173, 216, 230, 0.3);
}

.price-table tbody td:last-child {
    border-right: none;
}

/* Style for dash cells - using attribute or class */
.price-table tbody td[data-empty="true"],
.price-table tbody td:empty {
    color: #adb5bd;
    font-style: italic;
}



.price-list-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.price-list-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 15px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #1A2D4C;
    padding: 10px 40px;
    transition: all 0.3s ease;
}

.price-list-btn a:hover {
    background-color: #2e5ca5;
    color: #fff;
}

.price-list-btn a:hover svg path {
    fill: #fff;
}

.price-list-btn a svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.price-list-btn a svg path {
    fill: #1A2D4C;
    transition: all 0.3s ease;
}


.info-wrapper{
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
}

.info-item{
    width: 50%;
    box-shadow: 0 0px 6px rgba(173, 216, 230, 0.5);
    border-radius: 10px;
    padding: 20px;
}

.info-item h2{
    color: #2e5ca5;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-item h3{
    color: #1A2D4C;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.info-item ul{
    padding-left: 20px;
}
.info-item ul li{
    color: #1A2D4C;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.8;
    list-style: disc;
    
}

/* .info-item ul li::marker{
    color: var(--primary-color);
} */

.info-item ul li:last-child{
    margin-bottom: 0;
}

/* .info-item ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
} */
.info-item-2 ul li{
    list-style: decimal;
}

.info-item ul li strong{
    font-weight: 600;
    color: #1A2D4C;
}

/* faq */
.faq-section{
    padding: 40px 0;
}
.faq-header{
    text-align: center;
    margin-bottom: 50px;
}
.faq-header h2{
    font-size: 50px;
    font-weight: 600;
    color: #1A2D4C;
}

.faq-wrapper{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.faq-item{
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0px 6px rgba(173, 216, 230, 0.5);
}
.faq-item-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background-color: rgba(173, 216, 230, 0.2);
    position: relative;
    padding-left: 65px;
    gap: 10px;
}
.faq-item-header:hover{
    background-color: var(--primary-color);
}
.faq-item-header::before{
    content: 'Q';
    width: 30px;
    height: 30px;
    background-color: #2e5ca5;
    border-radius: 3px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.faq-item-header h3{
    font-size: 20px;
    font-weight: 500;
    color: #1A2D4C;
}
.faq-item-header span{
    font-size: 26px;
    font-weight: 400;
    color: #1A2D4C;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item-content{
    padding: 30px;
    display: none;
    background-color: #fff;
}

.faq-item-content p{
    font-size: 17px;
    font-weight: 400;
    color: #1A2D4C;
}

.faq-item-header span.active{
    transform: rotate(45deg);
}

.faq-container{
    padding: 0 15px;
}


/* Responsive Design */
@media screen and (max-width: 1200px) {
    .price-table {
        font-size: 14px;
    }

    .price-table thead th,
    .price-table tbody td {
        padding: 14px 8px;
        font-size: 14px;
    }
}

@media screen and (max-width: 992px) {
    .faq-section{
        padding: 10px 0 20px 0;
    }
    .faq-header{
        margin-bottom: 30px;
    }
    .faq-header h2{
        font-size: 30px;
    }

    .faq-item-header{
        padding: 20px;
        padding-left: 40px;
    }

    .faq-item-header h3{
        font-size: 16px;
    }
    .faq-item-header span{
        font-size: 20px;
    }

    .faq-item-header::before{
        width: 20px;
        height: 20px;
        font-size: 15px;
        left: 10px;
    }
    .faq-item-content{
        padding: 20px;
    }
    .faq-item-content p{
        font-size: 14px;
    }


    .info-wrapper{
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        margin-bottom: 15px;
    }
    .info-item{
        width: 100%;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }
    .info-item-2{
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 10px;
    }

    .info-item h2{
        font-size: 20px;
    }
    .info-item h3{
        font-size: 15px;
    }
    .info-item ul li{
        font-size: 14px;
    }
    .info-item ul li strong{
        font-size: 14px;
    }

    .price-list-header {
        padding: 0;
    }

    .list-box .price-list-header{
        display: none;
    }

    .price-list-title {
        font-size: 28px;
        
    }

    .price-list-subtitle {
        font-size: 14px;
    }

    .price-table-section {
        padding: 0 0px 40px;
    }

    .price-table-wrapper {
        margin-bottom: 30px;
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .price-table {
        min-width: 800px;
        font-size: 14px;
    }

    .price-table thead th {
        padding: 12px 6px;
        font-size: 13px;
    }

    .price-table tbody td {
        padding: 12px 6px;
        font-size: 13px;
    }

    .price-table tbody td:first-child {
        padding-left: 12px;
        font-size: 13px;
    }

    .main-container{
        margin: 30px auto 0;
    }
    .list-header-wrapper{
        padding: 10px;
    }

    .list-content{
        margin-top: 0px;
    }

    .list-header{
        flex-direction: column;
        gap: 10px;
    }

    .list-header h1{
        font-size: 20px;
        text-align: center;
    }

    .list-header p{
        font-size: 14px;
        text-align: center;
    }

    .list-btn{
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .price-list-title {
        font-size: 18px;
    }

    .price-table {
        min-width: 700px;
        font-size: 12px;
    }

    .price-table thead th {
        padding: 10px 4px;
        font-size: 12px;
    }

    .price-table tbody td {
        padding: 10px 4px;
        font-size: 12px;
    }

    .price-table tbody td:first-child {
        padding-left: 12px;
        font-size: 12px;
    }
}