.introduce .intro {
    background: url('/images/xstation/anh1_dichvu.jpg') no-repeat center center;
    padding: 100px 0;
    padding-bottom: 260px;
}
.introduce .intro .title {
    font-size: var(--font-size--36);
    line-height: 2;
    margin-bottom: 80px;
    font-weight: var(--font-weight--700);
}
.introduce .pack .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    transform: translateY(-120px);
}
.introduce .pack .list .item {
    background-color: var(--primary-white);
    box-shadow: 0px 4px 45.3px 0px #00000017;
    padding:36px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
    border: 2px solid #e5e5e5;
}
.introduce .pack .list .item:hover {
    transform: translateY(-10px);
}
.introduce .pack .list .item .top{
    border-bottom: 2px solid #b6c3d4;
    padding-bottom: 16px;
}
.introduce .pack .list .item .bottom { flex: 1 1 0%;}
.introduce .pack .list .item .mark{
    position: absolute;
    width: 70%;
    padding: 10px;
    height: 54px;
    background-color: var(--primary-red);
    border-radius: 20px 20px 0 0;
    color: var(--primary-white);
    left: 50%;
    transform: translateX(-50%);
    top: -54px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.introduce .pack .list .item .btn-contact {
    text-align: center;
    padding: 10px 20px;
    max-width: 260px;
    min-width: 200px;
    background-color: var(--primary-white);
    font-size: var(--font-size--20);
    font-weight: 600;
    border: 2px solid #121212;
}
.introduce .pack .list .item .btn-contact:hover {
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-color: var(--primary-red);
}

.contact-now {
    background-color: var(--primary-red);
    padding: 40px 60px;
    margin-top: -60px;
}
.contact-now .btn-contact{
    background-color: var(--primary-white);
    color: var(--primary-red);
    padding: 10px 30px;
    font-size: var(--font-size--20);
    font-weight: 600;
    min-width: 120px;
    border-radius: 0;
}
.form-container {
    margin: 0 auto;
    padding: 80px 120px;
    background:#C12443CC;
    transform: translateY(60px);
}

.table thead th {
    text-align: center;
}
.table td {
    text-align: center;
}
.checkmark {
    color: green;
    font-size: 20px;
}
.cross {
    color: red;
    font-size: 20px;
}
table, th, td {
    border: none !important;
}


section.contact{
    background: url('/images/xstation/anh2_dichvu.jpg') no-repeat center center;
    padding-top: 80px;
}



.accordion {
    border: none;
}
.accordion-item {
    padding:12px 20px;
    border-radius: 0px;
    border: none;
    background-color: #f8f9fa;
    font-size: var(--font-size--18);
    font-weight: 600;
}
.accordion-button {
    background-color: transparent;
    box-shadow: none;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size--18);
}
.accordion-button::after {
    content: "";
    background: url('../images/xstation/icon/ic_arrow_right.png') no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}
.accordion-button:not(.collapsed)::after {
    content: "";
    background: url('../images/xstation/icon/ic_arrow_down.png') no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}
.accordion-body {
    color: var(--primary-red); 
}
.accordion-button:not(.collapsed) {
    color: var(--primary-black);
    background-color: #F7F8FA;
    box-shadow: none !important;
}

@media (max-width:1400px) {
 
}

@media (max-width:1200px) {
  

    
}

@media (max-width:992px) {
    .introduce .intro {
        padding: 60px 0;
        padding-bottom: 220px;
    }
    .introduce .intro .title {
        margin-bottom: 30px;
    }
    .introduce .pack .list {
        gap: 20px;
    }
    .introduce .pack .list .item {
        padding: 24px 16px;
    }
    .introduce .pack .list .item .desc {
        height: 40px !important;
    }
    
}

@media (max-width:768px) {
    .introduce .pack .list {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .introduce .pack .list .item {
        padding: 32px 24px;
    }
    .introduce .pack .list .item:nth-child(2) {
        margin-top: 60px;
    }
    section.contact {
        padding-top: 0px;
    }
    .contact-now {
        padding: 20px 20px;
        margin-top: -80px;
    }
    .form-container {
        padding: 24px !important;
    }
}

@media (max-width:576px) {
    .introduce .intro .title {
        line-height: 1.5;
    }
    .introduce .intro {
        padding: 40px 0;
        padding-bottom: 180px;
    }
    .introduce .pack .list .item .desc {
        height: 24px !important;
    }

    .contact-now {
        padding: 16px 16px;
        margin-top: -80px;
    }
    .form-container {
        padding: 16px !important;
    }

    .accordion-body,.accordion-button {
        padding: 6px;
    }
}