/* Footer Styles - Scoped and Minimal */
.site-footer {
    background-color: #f8f9fa;
    padding: 2rem 0 1rem;
    border-top: 1px solid #e0e0e0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quick-links {
    text-align: center;
}
.quick-links h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2e8b57;
    margin-bottom: 1rem;
}
.quick-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
}
.quick-links a {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.3s ease;
}
.quick-links a:hover, .quick-links a:focus {
    color: #2e8b57;
    outline: 2px solid #2e8b57;
    outline-offset: 2px;
}
.footer-info {
    margin-top: 1rem;
}
.footer-info p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #666;
}
/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 2px solid #2e8b57;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.cookie-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2e8b57;
    margin: 0;
}
.cookie-content p {
    font-family: 'Nunito', sans-serif;
    color: #333;
    margin: 0;
    text-align: center;
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
}
.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-reject {
    background-color: #ccc;
    color: #333;
}
.btn-reject:hover, .btn-reject:focus {
    background-color: #aaa;
    outline: 2px solid #333;
}
.btn-accept {
    background-color: #2e8b57;
    color: #fff;
}
.btn-accept:hover, .btn-accept:focus {
    background-color: #228b22;
    outline: 2px solid #2e8b57;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
    .cookie-content {
        padding: 0 1rem;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-buttons button {
        width: 100%;
    }
}