/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 249, 250, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Cookie Settings Modal */
.cookie-options {
    margin: 2rem 0;
}

.cookie-option {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option label {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-option p {
    margin-left: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
