/* Footer Styles */
footer {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #000;
    background-color: white;
    border-radius: 2px;
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #666;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-right {
    display: flex;
    align-items: flex-start;
}

.stats-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    color: #666;
}

.footer-content p {
    margin-bottom: 5px;
}

.footer-content strong {
    color: #000;
}

.contact-link {
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-link:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
}

.footer-link:hover {
    background-color: #f0f0f0;
    color: #000;
    transform: translateY(-1px);
}

.footer-link svg {
    transition: transform 0.3s ease;
}

.footer-link:hover svg {
    transform: scale(1.1);
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .stats-container {
        gap: 20px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    footer {
        margin-top: 40px;
        padding: 20px 0;
        margin-bottom: 15px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-link {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .stats-container {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}