/* CSS cho Card (Khối dịch vụ) */
.medical-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%; /* Giúp các ô cao bằng nhau nếu xếp hàng ngang */
    box-sizing: border-box; /* Đảm bảo padding không làm vỡ khung */
}

.medical-card:hover {
    transform: translateY(-5px);
}

/* Icon box trên cùng */
.card-icon-top {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
	align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Màu sắc */
.bg-purple { background-color: #ede9fe; color: #ffffff; }
.bg-green { background-color: #dcfce7; color: #ffffff; }

/* Tiêu đề & Chữ */
.medical-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    margin-top: 0;
}

.medical-card p.desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Danh sách dấu tích */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.feature-list li i {
    color: #00cba9;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}


/* Style chung cho mỗi mục (Item) */
.feature-item {
    display: flex;
    align-items: center; /* Căn giữa icon và chữ theo chiều dọc */
    gap: 20px; /* Khoảng cách giữa icon và chữ */
    padding: 15px 0; /* Khoảng cách trên dưới */
    font-family: 'Lato', sans-serif;
    border-bottom: 1px dashed #eee; /* Đường kẻ mờ ngăn cách các mục (tùy chọn) */
}

.feature-item:last-child {
    border-bottom: none; /* Bỏ kẻ dòng cuối cùng */
}

/* Khung chứa Icon */
.feature-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px; /* Bo góc mềm mại */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
    font-size: 22px;
    
    /* MÀU SẮC CHUẨN YÊU CẦU */
    background-color: rgba(0, 180, 110, 0.1); /* Nền xanh nhạt 10% */
    color: rgb(0, 180, 110); /* Icon màu xanh đậm */
    transition: all 0.3s ease;
}

/* Phần nội dung chữ */
.feature-content h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.feature-content p {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.4;
}

/* Hiệu ứng hover: Đảo màu khi di chuột vào */
.feature-item:hover .feature-icon-box {
    background-color: rgb(0, 180, 110);
    color: #ffffff;
}
