:root {
    --primary-color: #0072bb;
    --secondary-color: #009e9d;
    --gradient-color: linear-gradient(90deg, #0072bb, #009e9d);
}

.footer-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.text-gradient {
    background: linear-gradient(90deg, #0072bb, #009e9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links li,
.footer-social li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.footer-links a i,
.footer-social a i {
    color: #009e9d;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #009e9d;
    transform: translateX(6px);
}

.footer-links a:hover i,
.footer-social a:hover i {
    color: #009e9d;
    transform: rotate(15deg);
}

.footer-divider {
    border-color: rgb(0, 0, 0);
}