.footer-col.services .footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-col.services .footer-links a i {
    color: #ff7043;  /* Màu cam đậm hơn phù hợp với điểm nhấn trên trang */
    margin-right: 10px; /* Tăng khoảng cách giữa icon và text */
    font-size: 10px; /* Giảm kích thước icon */
}

.footer-col.services .footer-links a:hover {
    color: #fff;
    text-decoration: none;
    transform: translateX(5px); /* Hiệu ứng di chuyển nhẹ khi hover */
    transition: all 0.3s ease;
}

.footer-col.services .footer-links a:hover i {
    color: #ff9800; /* Màu cam khi hover */
}

/* Tùy chỉnh tiêu đề của phần dịch vụ */
.footer-col.services h4 {
    color: #fff;
    position: relative;
}

.footer-col.services h4::after {
    background: linear-gradient(90deg, #ff7043, #ff9800);
    width: 60px;
    height: 3px;
}

/* Cải thiện khoảng cách và hiệu ứng */
.footer-col.services .footer-links li {
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

/* Thêm border mỏng ở dưới mỗi mục */
.footer-col.services .footer-links li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

/* Thêm hiệu ứng cho toàn bộ cột services */
.footer-col.services {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}