/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    z-index: 9999;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-header h3 {
    margin-bottom: 0;
    color: #fff;
    font-size: 1.3rem;
}

.cookie-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.cookie-close:hover {
    background: none;
    color: #ccc;
}

.cookie-options {
    margin: 25px 0;
}

.cookie-option {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.cookie-option input {
    margin-right: 10px;
}

.cookie-option label {
    font-weight: 600;
    margin-right: 20px;
}

.cookie-option p {
    flex: 1 0 100%;
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: 25px;
    font-size: 0.9rem;
    color: #ddd;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-footer {
    font-size: 0.9rem;
    color: #ddd;
}

.cookie-footer a {
    color: #fff;
    text-decoration: underline;
}

.cookie-footer a:hover {
    color: #ccc;
}

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