.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 1.5rem;
    z-index: 9999;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-header h5 {
    margin: 0;
    color: #2C3E50;
    font-size: 1.25rem;
}

.cookie-body p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.5rem;
}

.cookie-note {
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

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

.cookie-consent .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.cookie-consent .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.cookie-consent .btn-link {
    color: #6c757d;
    text-decoration: none;
}

.cookie-consent .btn-link:hover {
    color: #5a6268;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .btn-link {
        margin-top: 0.5rem;
    }
}
