/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 6px 15px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .cookie-banner .col-md-8,
    .cookie-banner .col-md-4 {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .cookie-banner .btn {
        display: inline-block;
        margin: 3px;
        width: auto;
    }
}

