/* --- UNIVERSAL FOOTER STYLES --- */
.site-footer {
    background: #11253E;
    padding: 60px 20px;
    border-top: 2px solid #b88c5c;
    margin-top: 50px;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    position: relative;
    min-width: 220px;
}

.footer-column h3 {
    color: #b88c5c;
    padding: 12px 15px;
    font-size: 1.1rem;
    cursor: pointer;
    border-bottom: 2px solid #b88c5c;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px 5px 0 0;
}

.footer-column:hover h3,
.footer-column.active h3 {
    background-color: #00008B; /* darkblue */
    color: #87CEFA; /* lightskyblue */
}

.footer-icon {
    font-size: 0.8rem;
    transition: transform 0.4s ease;
}

.footer-column.active .footer-icon {
    transform: rotate(180deg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
    background: #11253E;
}

.footer-column:hover .footer-links,
.footer-column.active .footer-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-links li a {
    color: #b88c5c;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 15px;
    display: block;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    background-color: #00008B;
    color: #87CEFA;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 140, 92, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ceb888;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h4 { color: #ceb888; margin: 0 0 5px 0; }
.cookie-text p { font-size: 0.9rem; margin: 0; }

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-btn.accept { background: #ceb888; color: #11253E; border: none; }
.cookie-btn.reject { background: transparent; color: #ceb888; border: 1px solid #ceb888; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .footer-container { flex-direction: column; gap: 10px; }
    .footer-links {
        position: relative;
        max-height: 0;
        display: none;
        opacity: 0;
    }
    .footer-column.active .footer-links {
        max-height: 300px;
        display: block;
        opacity: 1;
    }
    .footer-bottom { margin-top: 40px; }}
