/* Footer Styles */
footer {
    background-color: white;
    border-top: 1px solid #f1f1f4;
}

/* Company Description */
.company-description {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Section Headers */
.footer-section h3 {
    color: #1e293b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Footer Links */
.footer-section a {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #1e293b;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid #f1f1f4;
}

/* Copyright Text */
.copyright {
    color: #64748b;
    font-size: 14px;
}

/* Legal Links */
.legal-links a {
    color: #64748b;
    font-size: 14px;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #1e293b;
}

/* LinkedIn Button */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    color: #1e293b;
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.social-link i {
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-info {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

/* Logo */
.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}
