/* --- FOOTER STYLES --- */
.site-footer {
    flex-shrink: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 10% 20px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: auto;
    border-bottom: 1px solid #444;
    padding-bottom: 40px;
}

.footer-box h3 {
    color: #AB6886;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-box p {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 15px; /* FIX: Added margin to ensure spacing across all pages */
    line-height: 1.5;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li { margin-bottom: 10px; }

.footer-box ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-box ul li a:hover { color: #AB6886; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #444;
}

.footer-bottom p { margin: 0; }

/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}