/* === Cookie Consent Styles === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 9999;
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-content {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-content h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #4CAF50;
}

.cookie-content p {
    margin-bottom: 25px;
    text-align: center;
}

.cookie-options {
    margin-bottom: 30px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.cookie-option input {
    margin-right: 15px;
    margin-top: 5px;
}

.cookie-option label {
    font-weight: 700;
    margin-bottom: 5px;
}

.cookie-option p {
    margin: 0;
    margin-left: 30px;
    font-size: 0.9rem;
    color: #666;
    text-align: left;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.cookie-button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-button.primary {
    background-color: #4CAF50;
    color: white;
}

.cookie-button.primary:hover {
    background-color: #388E3C;
}

.cookie-button.secondary {
    background-color: #f5f5f5;
    color: #333;
}

.cookie-button.secondary:hover {
    background-color: #e0e0e0;
}

.cookie-more {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #4CAF50;
}

.cookie-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 20px;
        max-width: calc(100% - 20px);
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-button {
        width: 100%;
        margin-bottom: 10px;
    }
}
