
/* CSS tùy chỉnh để tinh chỉnh giao diện Bootstrap */
    :root {
        --primary-red: #e53935;
        --dark-text: #333;
        --background-light: #f7f7f7;
    }

    body {
        font-family: 'Be Vietnam Pro', sans-serif;
        background-color: #fff;
        color: var(--dark-text);
        font-weight: 400;
        font-size: 14px;
    }
    .be-vietnam-pro-regular {
      font-family: "Be Vietnam Pro", sans-serif;
      font-weight: 400;
      font-style: normal;
    }

    .be-vietnam-pro-medium {
      font-family: "Be Vietnam Pro", sans-serif;
      font-weight: 500;
      font-style: normal;
    }

    .be-vietnam-pro-semibold {
      font-family: "Be Vietnam Pro", sans-serif;
      font-weight: 600;
      font-style: normal;
    }
    h1,h2,h3,h4,h5,h6,p,label{
        margin: 0;
    }
    ul,ol{
        padding: 0;
        margin: 0;
    }
    .btn-danger{
        color: #CF232A;
        background-color: #fff;
        border-color: #fff;
        font-weight: 600;
    }

/* Tùy chỉnh Navbar */
    header {
        padding: 30px 0;
    }
    header .btn-danger{
        background: #CF232A;
        color: #fff;
        padding: 8px 5px;
    }
    
    .custom-navbar {
        /*box-shadow: 0 5px 25px rgba(0,0,0,0.08);*/
    }

    .navbar-brand img {
        height: 26px;
    }
    
    .nav-link {
        font-weight: 500;
        color: var(--dark-text) !important;
    }

    .nav-link:hover {
        color: var(--primary-red) !important;
    }

    @media (max-width: 768px) {
        .nav-mobile{
            position: absolute;
            z-index: 9;
            background: #fff;
            width: 100%;
            left: 0;
            padding: 10px;
            border-radius: 0 0 8px 8px;
        }
        .nav-mobile li{
            margin-bottom: 12px;
        }
        .nav-mobile a.btn{
            width: 100%;
        }
    }
    
    /* Tùy chỉnh Button */
    

    .btn-outline-dark {
        border-width: 2px;
    }

    /* Hero Section */
    .hero-section {
        /*padding-top: 150px;*/
        /*padding-bottom: 80px;*/
        /*overflow: hidden;*/
        background-color: #CF232A;
        position: relative;
        color: #fff;
        padding: 20px 0;
    }
    .hero-section:before{
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        height: 372px;
        width: 100%;
        background: url(../img/bg-banner.png) no-repeat;
    }

    .hero-section .display-4 {
        font-weight: 600 !important;
        font-size: 40px;
    }
    
    .pre-title {
        font-weight: 400;
        font-size: 16px;
    }
    .pre-title b{
        font-weight: 600;
        color: #CF232A;
        background: #ffd93b;
        padding: 2px;
        border-radius: 6px;
    }
    .hero-section .btn-danger{
        color: #dc3545 !important;
        border-color: #fff !important;
        background-color: #fff !important;
        font-weight: 600;
        font-size: 14px;
    }
    .hero-section .btn-outline-danger{
        color: #fff !important;
        border-color: #fff !important;
        font-size: 14px;
    }
    .hero-text-content p{
        font-size: 16px;
        color: #fff !important;
    }

    .hero-image-container {
        position: relative;
        text-align: right;
        margin: 0px 0 -60px;
        z-index: 10;
    }

    .hero-image-containers .hic-phone{
        position: absolute;
        left: 33%;
        top: 8%;
        z-index: 11;
    }
    .hero-image-containers .hic-card{
        position: absolute;
        top: 18%;
        left: 45%;
        z-index: 10; /* z-index thấp hơn .hic-phone để nằm dưới */

        /* Trạng thái ban đầu (ẩn bên ngoài) */
        opacity: 0;
        transform: translateX(150%); /* Bắt đầu từ ngoài bên phải */
        
        /* Animation để chạy vào */
        animation: slideInFromRight 1.5s ease-out 0.5s forwards;
    }

    /* Định nghĩa @keyframes cho animation chạy vào */
    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(150%);
        }
        /* Chạy vào trong 1.5s (1.5s / 4s = 37.5%) */
        37.5% {
            opacity: 1;
            transform: translateX(0); /* Di chuyển đến vị trí gốc */
        }
        /* Giữ nguyên vị trí trong 2.5s còn lại (từ 37.5% đến 100%) */
        100% {
            opacity: 1;
            transform: translateX(0);
        }
        /* Khi lặp lại, nó sẽ nhảy về 0% (biến mất và bắt đầu lại) */
    }   


    .hero-image {
        max-width: 100%;
        height: auto;
    }

    .sparkle {
        position: absolute;
        width: 50px;
        height: 50px;
    }

    .sparkle-1 {
        bottom: 30%;
        left: -5%;
    }

    .sparkle-2 {
        bottom: 20%;
        left: 5%;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .hero-section {
            padding-top: 120px;
        }
        .hero-text-content {
            text-align: center;
        }
        .hero-image-container {
            text-align: center;
            margin-top: 3rem;
        }
    }
    @media (max-width: 768px){
        .hero-image-containers .hic-phone {
            left: 30%;
        }
    }
    @media (max-width: 677px) {
        .hero-image-containers .hic-phone {
            left: 23%;
        }
    }
    @media (max-width: 534px){
        .hero-section {
            padding-top: 30px;
        }
        .hero-image-container {
            text-align: center;
            margin-top: 0;
        }
        .navbar-toggler:focus{
            box-shadow: none;
        }
        .hero-section .display-4{
            font-size: 24px;
        }
    }
    @media (max-width: 415px) {
        .hero-image-containers .hic-phone {
            left: 19%;
            width: 232px;
        }
        .hero-image-containers .hic-card{
            width: 245px;
        }
    }
    @media (max-width: 376px){
        .hero-image-containers .hic-phone{
            left: 27px;
            top: 16%;
        }
        .hero-image-containers .hic-card{
            top: 18%;
            left: 32%;
        }
        .payment-methods {
            margin: 60px 20px;
        }
        .hero-image-containers .hic-phone {
            left: 70px;
            top: 12%;
            width: 200px;
        }
    }

/* Định dạng chung cho tiêu đề các section */
    .box-card{
        /*border-radius: 80px 80px 0 0;*/
        padding: 80px 0;
        box-shadow: 0 -16px 40px #0000001f;
        background: linear-gradient(30deg,#FFEBEB 0%, #FFF9F9 53%, #FFF1EF 100%);
    }
    .section-title {
        font-weight: 700;
        margin-bottom: 1rem;
        
    }
    .section-title h2{
        font-size: 32px;
        margin-bottom: 12px;
        font-weight: 600 !important;
    }
    .section-title p{
        font-size: 16px;
    }

    .section-title p span{
        font-weight: 600;
        color: #CF232A;
    }

    @media (max-width: 534px){
        .section-title h2{
            font-size: 24px;
        }
        .section-title p{
            font-size: 14px;
        }
    }

    /* Định dạng cho container chứa logo các phương thức thanh toán */
    .payment-logos-container {
        gap: 2rem; /* Khoảng cách giữa các logo */
    }

    .payment-methods{
        margin: 60px;
    }
    /* Định dạng cho từng hình ảnh logo */
    .payment-logos-container img {
        height: 28px;                   /* Chiều cao cố định */
        object-fit: contain;            /* Đảm bảo logo không bị méo */
        /* filter: grayscale(1);           Chuyển logo thành màu xám */
        /* opacity: 0.6;                   Giảm độ trong suốt */
        transition: all 0.3s ease;      /* Hiệu ứng chuyển đổi mượt mà */
    }

    /* Hiệu ứng khi di chuột qua logo */
    .payment-logos-container img:hover {
        filter: grayscale(0);           /* Trả lại màu gốc */
        opacity: 1;                     /* Hiện rõ logo */
    }

    /* Định dạng cho thẻ (card) hiển thị lợi ích */
    .benefit{
        padding: 50px 0 80px;
        background: #FFEFEF;
    }
    .benefit-card {
        background-color: #fff;
        border-radius: 20px;            /* Bo tròn các góc */
        padding: 2.5rem 1.5rem;         /* Khoảng đệm bên trong */
        height: 100%;                   /* Chiều cao 100% để các thẻ bằng nhau */
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Đổ bóng nhẹ */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hiệu ứng chuyển động */
        text-align: left;
    }

    /* Hiệu ứng khi di chuột vào thẻ lợi ích */
    .benefit-card:hover {
        transform: translateY(-8px);   /* Nâng thẻ lên một chút */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Tăng độ đậm của bóng */
    }

    /* Định dạng cho icon trong thẻ lợi ích */
    .benefit-card .card-icon {
        height: 80px;
        width: 80px;
        object-fit: contain;
        margin-bottom: 1.5rem;
    }

    /* Định dạng cho tiêu đề trong thẻ lợi ích */
    .benefit-card .card-title {
        font-size:16px;
        font-weight: 600 !important;
        margin-bottom: 0.75rem;
    }

    /* Định dạng cho văn bản mô tả trong thẻ lợi ích */
    .benefit-card .card-text {
        color: #808080;
        font-size: 14px;
        line-height: 1.7;
    }

/* Container chính */
    .steps-section {
        padding: 80px 0;
        overflow: hidden; /* Quan trọng để tránh thanh cuộn ngang */
    }
    .steps-section h2 {
        font-weight: 700;
        font-size: 2.5rem; /* 40px */
        margin-bottom: 1.5rem;
        color: #212529;
    }
    .steps-section p {
        font-size: 1.125rem; /* 18px */
        color: #495057;
        line-height: 1.6;
    }
    
    /* Căn giữa cột văn bản */
    .text-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    /* --- SỬA ĐỔI CSS CHO ANIMATION --- */

    /* Wrapper này để giữ tỷ lệ (aspect-ratio). 
       Chúng ta sẽ đặt ảnh nền (cái điện thoại) vào .animation-container
    */
    .animation-wrapper {
        position: relative;
        width: 100%;
        /* Tỷ lệ phổ biến của điện thoại */
        aspect-ratio: 3 / 3; 
        /*max-width: 350px;*/ /* Giới hạn chiều rộng tối đa */
        margin: 0 auto; /* Căn giữa */
    }

    /* Container cho animation
       Đây là NỀN CHUNG (cái điện thoại)
    */
    .animation-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
        /* THÊM NỀN CHUNG VÀO ĐÂY
          Tôi dùng placeholder làm nền điện thoại
        */
        background-image: url('../img/bg-slide.png');
        background-size: contain; /* Đổi thành 'cover' hoặc 'contain' tùy ảnh nền */
        background-position: center;
        background-repeat: no-repeat;
        
        /*border-radius: 40px;*/ /* Bo góc cho nền điện thoại */
        /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);*/
        
        /* Quan trọng: Ẩn các phần tử con tràn ra ngoài */
        /*overflow: hidden; */
    }

    /* Các slide (cha của các ảnh động)
       Mỗi .slide-item là một màn hình
    */
    .slide-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
        /* Trạng thái mặc định: ẩn */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
        
        /* Căn chỉnh các ảnh con bên trong vùng đệm (padding) 
           của nền điện thoại.
        */
        padding: 12%; /* Giả sử nền điện thoại có viền */
        box-sizing: border-box;
    }

    /* Trạng thái hiển thị của slide */
    .slide-item.active {
        opacity: 1;
        visibility: visible;
        /* Thêm delay trước khi các con bắt đầu chạy */
        transition: opacity 0.5s ease-in-out 0.3s; 
    }

    /* --- Định vị và Animation cho các ảnh CON --- */

    /* Ảnh chính (ảnh gốc của bạn) */
    .slide-item .img-main {
        position: absolute;
        width: auto; /* Kích thước ảnh chính */
        top: 50%;
        left: 50%;
        z-index: 10; /* Đặt z-index ở mức 10 */
        
        /* Trạng thái ban đầu */
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
        
        /* Hiệu ứng mờ và scale nhẹ */
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        /* Chờ slide cha active (0.3s) + delay 0.2s */
        transition-delay: 0.5s; 
    }

    /* Ảnh phụ 1 (Trái Dưới) */
    .slide-1.slide-item .img-sub-left-bottom{
        bottom: 22% !important;
    }
    .slide-3.slide-item .img-sub-left-bottom{
        bottom: 22% !important;
    }
    .slide-item .img-sub-left-bottom {
        position: absolute;
        height: 87px; /* Kích thước ảnh phụ */
        left: 10%; /* Vị trí cuối cùng */
        bottom: 10%; /* Vị trí cuối cùng */
        z-index: 15; /* SỬA ĐỔI: Đặt z-index cao hơn ảnh chính (15 > 10) */
        
        /* Trạng thái ban đầu */
        opacity: 0;
        /* SỬA ĐỔI: Ẩn ở ngoài (chỉ từ bên trái) */
        transform: translate(-150%, 0); 
        transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease-out;
        /* Chạy sau ảnh chính */
        transition-delay: 0.8s; 
    }

    /* Ảnh phụ 2 (Phải Trên) */
    .slide-item .img-sub-right-top {
        position: absolute;
        width: auto; /* Kích thước ảnh phụ */
        right: 10%; /* Vị trí cuối cùng */
        top: -20%; /* Vị trí cuối cùng */
        z-index: 5; /* SỬA ĐỔI: Giữ z-index thấp hơn ảnh chính (5 < 10) */
        
        /* Trạng thái ban đầu */
        opacity: 0;
        /* SỬA ĐỔI: Ẩn ở ngoài (chỉ từ bên phải) */
        transform: translate(150%, 0); 
        transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease-out;
        /* Chạy sau cùng */
        transition-delay: 1.0s; 
    }

    /* 5.4. Ảnh phụ (Icon Zoom - Slide 1) */
    .slide-item .img-sub-zoom {
        position: absolute;
        width: 18.2%;
        bottom: 13.5%;
        left: 30.61%;
        
        /* Trạng thái ban đầu: ẩn, thu nhỏ */
        opacity: 1;
        transform: scale(0.5);
        
        /* SỬA LỖI: Đơn giản hóa transition, gộp chung */
        transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.0s;
        
        z-index: 15; /* Nằm trên ảnh chính */
    }
    
    .slide-item.active .img-sub-zoom {
        /* Trạng thái active: hiện, kích thước bình thường */
        opacity: 1;
        transform: scale(1.6);
    }

    /* Kích hoạt animation khi slide cha .active */

    .slide-item.active .img-main {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .slide-item.active .img-sub-left-bottom {
        opacity: 1;
        transform: translate(0, 0); /* Chạy về vị trí 0,0 */
    }

    .slide-item.active .img-sub-right-top {
        opacity: 1;
        transform: translate(0, 0); /* Chạy về vị trí 0,0 */
    }


    /* --- CSS CHO RESPONSIVE --- */
    @media (max-width: 991.98px) { 
        .steps-section {
            padding: 60px 0;
            text-align: center;
        }
        .steps-section h2 {
            font-size: 2rem; 
        }
        .text-content {
            align-items: center;
            text-align: center;
        }
        .text-content p {
            max-width: 100%; 
        }
        /* Căn giữa animation-wrapper trên mobile */
        .animation-wrapper {
            margin: 0 auto;
        }
    }
    
    @media (max-width: 575.98px) { 
        .steps-section h2 {
            font-size: 1.75rem; 
        }
        .steps-section p {
            font-size: 1rem; 
        }
        .animation-wrapper {
            max-width: 300px; /* Thu nhỏ điện thoại trên mobile */
        }
    }
/* Section: Giải pháp ngành nghề */
    .solutions-section {
        background: linear-gradient(30deg,#FFEBEB 0%, #FFF9F9 53%, #FFF1EF 100%);
        padding: 5rem 0;
        text-align: center;
    }

    .solutions-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: #333;
    }

    .solutions-header p {
        font-size: 1.1rem;
        color: #6c757d;
        max-width: 700px;
        margin: 0 auto 3rem auto;
        line-height: 1.6;
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 40px;
        text-align: left;
        margin-top: 40px;
    }

    .solution-card {
        background-color: #ffffff;
        border-radius: 16px;
        padding: 2rem 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #f0f0f0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .solution-card img {
        height: 50px;
        margin-bottom: 1rem;
    }

    .solution-card h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #404040;
    }

    .solution-card ul {
        list-style: none;
        padding-left: 1.25rem;
    }

    .solution-card ul li {
        position: relative;
        /*margin-bottom: 0.5rem;*/
        color: #808080;
        font-size: 14px;
    }

    .solution-card ul li::before {
        content: '•';
        color: #808080;
        font-weight: bold;
        display: inline-block;
        position: absolute;
        left: -1.25rem;
    }

    .solutions-footer {
        color: #404040;
        font-size: 16px;
    }
    
    @media (max-width: 992px) {
        .solutions-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .solutions-grid {
            grid-template-columns: 1fr;
        }
         .solutions-header h2 { font-size: 2rem; }
    }
/* Section 3: Khách hàng nói về chúng tôi */
    .testimonials-section {
        padding: 80px 0;
        position: relative;
        overflow: hidden;
        max-width: 1700px;
        margin: 0 auto;
    }
    
    .testimonials-section::after {
        content: '';
        position: absolute;
        top: 50px;
        right: 10%;
        width: 150px;
        height: 150px;
        background-image: radial-gradient(#fdd8d7 20%, transparent 20%);
        background-size: 15px 15px;
        opacity: 0.5;
        z-index: -1;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: #333;
    }

    .testimonials-header p {
        font-size: 1.1rem;
        color: #6c757d;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .testimonial-card {
        background-color: #ffffff;
        border-radius: 16px;
        padding: 34px;
        margin: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        border: 1px solid #f0f0f0;
        text-align: left;
        position: relative;
    }
    
    .testimonial-quote-icon {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 40px;
        height: 40px;
        /*background-color: #e53935;*/
        /*color: white;*/
        /*border-radius: 50%;*/
        display: flex;
        align-items: center;
        justify-content: center;
        /*font-size: 2rem;*/
        line-height: 1;
        font-family: Georgia, serif;
    }

    .testimonial-author {
        display: flex;
        align-items: start;
        margin-bottom: 1.5rem;
        justify-content: space-between;
    }
    .testimonial-author span.ta-img{
        display: block;
        width: 82px;
        height: 82px;
        margin-right: 14px;
    }
    .author-info{
        width:calc(100% - 90px);
    }
    .testimonial-author img {
        /*width: 60px;*/
        /*height: 60px;*/
        border-radius: 50%;
        object-fit: cover;
        margin-right: 1rem;
        border: 3px solid #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .author-info h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
    }

    .author-info span {
        font-size: 0.9rem;
        color: #e53935;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        color: #6c757d;
        min-height: 82px;
        overflow: hidden;
        margin-top: 12px;
        margin-bottom: 0;
    }
    
    /* Tùy chỉnh Owl Dots cho Testimonials */
    .testimonials-carousel .owl-dots {
        text-align: center;
        margin-top: 2rem;
    }

    .testimonials-carousel .owl-dots .owl-dot {
        width: 12px;
        height: 12px;
        background-color: #D1D5DB;
        border-radius: 50%;
        margin: 0 5px;
        transition: background-color 0.3s ease;
    }
    .testimonials-carousel .owl-dots .owl-dot span,
    .testimonials-carousel .owl-dots .owl-dot.active span{
        background: transparent;
    }

    .testimonials-carousel .owl-dots .owl-dot.active {
        background-color: #CF232A;
    }
    
    @media (max-width: 768px) {
        .testimonials-header h2 { font-size: 2rem; }
    }
    @media (max-width: 534px) {
        .testimonial-author{
            display: block;
        }
        .author-info {
            width: 100%;
        }
        .testimonial-card{
            padding: 24px;
        }
        .testimonial-author span.ta-img{
            margin-bottom: 12px;
        }
    }

/* Section 4: Yêu cầu để bắt đầu */

    .requirements-section {
        /*padding: 0 0 80px;*/
        background-color: #FFEFEF;
    }
    .requirements-card {
        /*background-color: #CF232A;*/
        /*background-image: url(../img/bg-requirements.png);*/
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        /*color: white;*/
        border-radius: 24px;
        padding: 60px;
        position: relative;
        overflow: hidden;
    }
    
    .requirements-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300px;
        height: 300px;
        background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 15px 15px;
        transform: translate(-20%, -50%);
        opacity: 0.5;
    }

    .requirements-grid {
        display: flex;
        align-items: center;
        gap: 3rem;
        position: relative;
        z-index: 1;
    }

    .requirements-content {
        flex: 1;
    }

    .requirements-content h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .requirements-content > p {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 2.5rem;
        max-width: 450px;
    }

    .requirement-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .requirement-icon {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        /*background-color: white;*/
        /*border-radius: 50%;*/
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
    }
    
    .requirement-icon img {
        /*height: 24px;*/
        width: 100%;
    }

    .requirement-details h4 {
        font-size: 1.25rem;
        font-weight: 600 !important;
        margin-bottom: 0.5rem;
    }

    .requirement-details ul {
        /*list-style: none;*/
        padding: 0;
        margin: 0;
        opacity: 0.9;
        padding-left: 14px;
    }
    .requirement-details ul li{
        list-style: disc;
    }

    .security-card {
        flex-shrink: 0;
        width: 320px;
        background-color: white;
        color: #333;
        border-radius: 16px;
        padding: 4rem 2rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .security-card img {
        height: 80px;
        margin-bottom: 1rem;
    }

    .security-card h4 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .pci-certified {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: #009F4F;
        font-weight: 500;
        margin-bottom: 1rem;
    }
    .pci-certified img{
        width: 16px;
        height: 16px;
        margin-bottom: 0;
    }
    
    .pci-certified svg {
        fill: #007bff;
    }

    .security-card p {
        font-size: 0.9rem;
        color: #6c757d;
    }

    @media (max-width: 992px) {
        .requirements-grid {
            flex-direction: column;
        }
        .requirements-card {
            padding: 3rem;
        }
        .security-card {
            width: 100%;
            max-width: 350px;
        }
    }
    @media (max-width: 576px) {
        .requirements-card {
            padding: 2rem;
        }
        .requirements-content h2 {
            font-size: 2rem;
        }
        .requirements-grid{
            gap: 0;
        }
        .security-card{
            padding: 2rem;
        }
    }

/* Section 5: Câu hỏi thường gặp */
    .faq-section {
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .faq-section .container{
        max-width: 1000px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .faq-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: #333;
    }

    .faq-header p {
        font-size: 1.1rem;
        color: #6c757d;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .faq-grid {
        /*display: grid;
        grid-template-columns: 1fr 1.5fr;
        align-items: center;
        gap: 4rem;
        position: relative;*/
    }
    .faq-grid::before {
        content: '';
        position: absolute;
        top: 0px;
        left: -30%;
        width: 850px;
        height: 518px;
        background-image: url(../img/bg-quest.png);
        background-repeat: no-repeat;
        background-size: contain;
        /* opacity: 0.1; */
        z-index: -1;
    }

    .faq-image-container {
        text-align: center;
    }

    .faq-image-container img {
        max-width: 100%;
        height: auto;
    }
    
    .faq-accordion .accordion-item {
        border: 1px dashed #C4C4C4;
        margin-bottom: 20px;
        background: #f9fafb;
        border-radius: 8px;
    }

    .accordion-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .accordion-icon {
        font-size: 1.5rem;
        font-weight: bold;
        color: #6c757d;
        transition: transform 0.3s ease;
    }
    
    .accordion-item.active .accordion-icon {
        transform: rotate(45deg);
        color: #e53935;
    }

    .accordion-answer {
        display: none;
        padding: 0 20px 20px;
        color: #6c757d;
        line-height: 1.7;
    }

    @media (max-width: 992px) {
        .faq-grid {
            grid-template-columns: 1fr;
        }
        .faq-image-container {
            display: none; /* Ẩn ảnh trên mobile để tập trung vào nội dung */
        }
    }
    @media (max-width: 376px){
        .accordion-question{
            font-size: 16px;
        }
    }
/* Section 6: Sức mạnh trong tay bạn */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(30deg, #FBF9F9 100%, #FFEFEF 100%);
    }

    .cta-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .cta-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: #333;
    }

    .cta-header p {
        font-size: 1.1rem;
        color: #6c757d;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
        margin-top: 40px;
    }
    
    .app-info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2.5rem;
    }
    
    .app-icon {
        flex-shrink: 0;
        margin-right: 1.5rem;
        width: 162px;
    }
    
    .app-icon img {
        width: 100%;
        border-radius: 16px;
        /*box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
    }

    .app-details h4 {
        font-size: 1.25rem;
        font-weight: 600 !important;
        margin-bottom: 0.5rem;
    }
    
    .app-details p {
        color: #6c757d;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
    
    .store-buttons a {
        display: inline-block;
        margin-right: 0.5rem;
        transition: transform 0.2s ease;
        margin-bottom: 10px;
    }
    
    .store-buttons a:hover {
        transform: translateY(-2px);
    }
    
    .store-buttons img {
        height: 45px;
    }
    
    .phone-images-container {
        text-align: center;
    }
    
    .phone-images-container img {
        max-width: 100%;
        height: auto;
    }

    @media (max-width: 992px) {
        .cta-grid {
            grid-template-columns: 1fr;
        }
        .phone-images-container {
            /*margin-top: 3rem;*/
        }
    }

    @media (max-width: 376px){
        .cta-grid{
            gap: 0;
        }
        .app-icon {
            margin-right: 12px;
            width: 100px;
        }
    } 

/* Section 7: Sẵn sàng để bứt phá */
    .final-cta-section {
        /*background-color: #CF232A;*/
        padding: 5rem 0;
        /*color: white;*/
    }
    
    .final-cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /*align-items: center;*/
        gap: 4rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        border-radius: 8px;
        
        background-color: #CF232A;
    }
    .cta-text-content{
        padding: 40px;
        color: #fff;
    }
    .cta-text-content h2 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .cta-text-content p {
        font-size: 16px;
        line-height: 1.7;
        opacity: 0.9;
        margin-bottom: 2rem;
        max-width: 450px;
    }
    
    .cta-checklist {
        list-style: none;
        padding: 0;
    }
    
    .cta-checklist li {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 1rem;
    }
    
    .cta-checklist svg {
        flex-shrink: 0;
        margin-right: 0.75rem;
        width: 24px;
        height: 24px;
    }
    
    .cta-form-card {
        background-color: white;
        border-radius:  0px 8px 8px 0;
        padding: 2.5rem;
        color: #333;
        /*box-shadow: 0 15px 40px rgba(0,0,0,0.15);*/
    }
    
    .cta-form-card h4 {
        font-size: 1.5rem;
        font-weight: 600 !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-control {
        width: 100%;
        padding: 1rem;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
    }
    
    .form-control::placeholder {
        color: #adb5bd;
    }

    .btn-submit {
        width: 100%;
        background-color: #d32f2f;
        color: white;
        border: none;
        padding: 9px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .btn-submit:hover {
        background-color: #b71c1c;
    }
    
    .form-note {
        text-align: center;
        font-size: 0.875rem;
        color: #6c757d;
        margin-top: 1rem;
    }

    @media (max-width: 992px) {
        .final-cta-grid {
            grid-template-columns: 1fr;
        }
        .cta-text-content {
            text-align: center;
            /*margin-bottom: 3rem;*/
        }
        .cta-text-content p {
            margin-left: auto;
            margin-right: auto;
        }
        .cta-checklist {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .cta-checklist li{
            text-align: left;
        }
    }

    @media (max-width: 533px){
        .cta-text-content{
            padding: 20px;
        }
        .cta-form-container{
            padding-top: 20px;
        }
        .cta-form-card{
            border-radius: 0 0 8px 8px;
            padding: 2.5rem 1.5rem;;
        }
        .final-cta-grid{
            gap: 0;
        }
        .cta-text-content h2{
            font-size: 26px;
        }
        .cta-text-content p{
            font-size: 14px;
        }
        .cta-checklist li{
            font-size: 14px;
        }
    }

/*@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1000px;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1000px;
    }
}
*/