body {
    font-family: 'Poppins', sans-serif;
}

/* Hiệu ứng sóng (Wave) ngăn cách section */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(138% + 1.3px);
    height: 60px;
}

.text-justify-custom {
    text-align: justify;
}

/* CSS cho phần Header Background chìm */
.header-bg {
    background-color: #2c53ff;
    position: relative;
    z-index: 1;
}

.header-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Thay ảnh này bằng ảnh gia đình/người trong thiết kế của bạn */
    background-image: url('../images/photo-1542037104857-ffbb0b9155fb.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    /* Làm ảnh chìm xuống */
    mix-blend-mode: multiply;
    z-index: -1;
}

/* Container bao ngoài để canh lề */
.trust-banner-section {
    padding: 20px 0;
    /* Khoảng cách trên dưới */
    width: 100%;
}

.trust-banner-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Khối màu xanh chính (Viên thuốc) */
.trust-banner-wrapper {
    background-color: #2563EB;
    /* Màu xanh dương đậm giống ảnh */
    border-radius: 50px;
    /* Bo tròn mạnh để tạo hình viên thuốc */
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    /* Chia đều khoảng cách các mục */
    align-items: center;
    flex-wrap: wrap;
    /* Cho phép xuống dòng trên màn hình nhỏ */
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

/* Từng mục con */
.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    flex: 1;
    /* Chia đều chiều rộng */
    min-width: 200px;
    /* Chiều rộng tối thiểu để không bị co quá nhỏ */
}

/* Phần Icon: Vuông bo góc nền xanh nhạt */
.trust-icon {
    background-color: #adf0ff;
    /* Màu nền icon xanh nhạt */
    width: 50px;
    height: 50px;
    border-radius: 12px;
    /* Bo góc nhẹ cho icon */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    /* stroke: #1e3a8a; */
    /* Màu nét vẽ icon xanh đen */
}

/* Phần chữ */
.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.trust-desc {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.2;
}

/* --- RESPONSIVE: Giao diện Mobile --- */
@media (max-width: 991px) {
    .trust-banner-wrapper {
        border-radius: 20px;
        /* Giảm bo tròn trên mobile */
        padding: 20px;
        gap: 20px;
    }

    .trust-item {
        flex: 1 1 45%;
        /* Trên Tablet hiển thị 2 cột */
    }
}

@media (max-width: 600px) {
    .trust-item {
        flex: 1 1 100%;
        /* Trên Mobile hiển thị 1 cột dọc */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .trust-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Chỉnh màu nút mũi tên Slick Slider */
.slick-prev:before, .slick-next:before {
    color: #2c53ff !important; /* Màu xanh dương mới */
    font-size: 24px;
    opacity: 0.8;
}

/* Đẩy nút mũi tên ra xa một chút */
.slick-prev { left: -25px; }
.slick-next { right: -25px; }

/* Chỉnh màu dấu chấm (dots) */
.slick-dots li button:before {
    font-size: 10px;
    color: #ccc;
}
.slick-dots li.slick-active button:before {
    color: #2c53ff !important; /* Màu xanh dương mới khi active */
    opacity: 1;
}