/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
    display: none;
}
.cookie-consent-banner.show {
    display: block;
}
.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent-text {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
}
.cookie-consent-text a {
    color: #ea8b2c;
    text-decoration: underline;
}
.cookie-consent-text a:hover {
    color: #d4791f;
}
.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-consent-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.cookie-consent-btn.accept {
    background: #ea8b2c;
    color: #fff;
}
.cookie-consent-btn.accept:hover {
    background: #d4791f;
}
.cookie-consent-btn.reject {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
}
.cookie-consent-btn.reject:hover {
    background: #2a2a3e;
    color: #fff;
}
.cookie-consent-btn.settings {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    font-size: 13px;
    padding: 8px 16px;
}
.cookie-consent-btn.settings:hover {
    background: #2a2a3e;
    color: #fff;
}
@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Legal content styling */
.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.legal-content li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}
.legal-content a {
    color: #ea8b2c;
}
.legal-content a:hover {
    color: #d4791f;
}
