.footer {
    background: linear-gradient(to bottom, #1f2937, #111827);
    font-size: 0.95rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-heading {
    color: #f3f4f6;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #f3f4f6;
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #f3f4f6;
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.contact-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f3f4f6;
}

.footer-divider {
    border-color: #374151;
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        padding: 0;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}
