/* Cookie Consent Banner */
#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #102F3F;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

#cookieConsent.show {
    transform: translateY(0);
}

#cookieConsent .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

#cookieConsent p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

#cookieConsent .cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

#cookieConsent .btn-accept {
    background: #D4AF37;
    color: #102F3F;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

#cookieConsent .btn-accept:hover {
    background: #e5c04a;
    transform: translateY(-2px);
}

#cookieConsent .btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

#cookieConsent .btn-decline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

#cookieConsent a {
    color: #D4AF37;
    text-decoration: underline;
}

#cookieConsent a:hover {
    color: #e5c04a;
}

@media (max-width: 768px) {
    #cookieConsent .container {
        flex-direction: column;
        text-align: center;
    }

    #cookieConsent .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}