/* Footer Styles */
.site-footer {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-top: auto;
    color: #666;
    z-index: 1000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-email {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #ff3b3b;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-email,
    .footer-copyright {
        font-size: 0.8rem;
    }
}
