/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #212227;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    display: none;
}

#cookie-consent-banner.show {
    display: block;
}

#cookie-consent-banner .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

#cookie-consent-banner .cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-consent-banner .cookie-text a {
    color: #009ddc;
    text-decoration: underline;
}

#cookie-consent-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-consent-banner .cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.3s;
}

#cookie-consent-banner .cookie-btn-accept {
    background: #009ddc;
    color: #fff;
}

#cookie-consent-banner .cookie-btn-accept:hover {
    background: #0581b6;
}

#cookie-consent-banner .cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

#cookie-consent-banner .cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    #cookie-consent-banner .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-consent-banner .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    #cookie-consent-banner .cookie-btn {
        flex: 1;
        max-width: 200px;
    }
}

