.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s forwards;
    border-left: 4px solid #1E40AF;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1E40AF;
}

.cookie-consent__text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #555;
}

.cookie-consent__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-consent__button {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.cookie-consent__accept {
    background-color: #1E40AF;
    color: #fff;
    border: none;
    flex-grow: 1;
}

.cookie-consent__accept:hover {
    background-color: #153e75;
}

.cookie-consent__customize {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    flex-grow: 1;
}

.cookie-consent__customize:hover {
    background-color: #e9e9e9;
}

.cookie-consent__link {
    color: #1E40AF;
    text-decoration: underline;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.cookie-consent__link:hover {
    color: #153e75;
}

@media (max-width: 576px) {
    .cookie-consent {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 10px 10px 0 0;
    }
    
    .cookie-consent__buttons {
        flex-direction: column;
    }
    
    .cookie-consent__button {
        width: 100%;
    }
}
