/* Footer Styles */
.site-footer {
    background: #11111187;
    color: #ccc;
    padding: 15px 15px;
    font-size: 14px;
    clear: both;
    margin-top: 0;
    line-height: 1.5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    gap: 10px;
}

.footer-column {
    flex: 1 1 250px;
    padding: 0 15px;
    margin-bottom: 25px;
    min-width: 250px;
}

.footer-column-narrow {
    flex: 1 1 200px;
    padding: 0 15px;
    margin-bottom: 25px;
    min-width: 200px;
}

.footer-heading {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    padding: 2px 0;
}

.footer-nav a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-button {
    margin-top: 15px;
}

.contact-button a {
    color: #ccc;
    text-decoration: none;
    border: 1px solid #444;
    padding: 7px 15px;
    border-radius: 3px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-button a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

.footer-copyright {
    text-align: center;
    margin: 0;
    padding: 10px 0;
    color: #888;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 10px;
    }
    
    .footer-grid {
        gap: 5px;
    }
    
    .footer-column, 
    .footer-column-narrow {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 0 10px;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 10px;
    }
} 