.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.consent-banner.show {
    transform: translateY(0);
}

.consent-banner h6 {
    color: white;
    font-weight: 600;
}

.consent-banner p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.consent-banner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
}

@media (max-width: 991px) {
    .consent-banner .col-lg-4 {
        text-align: center !important;
    }
    
    .consent-banner .btn {
        margin-bottom: 0.5rem;
        width: 100%;
        max-width: 200px;
    }
}

