.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #F39C12;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-consent p {
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .cookie-consent .col-md-4 {
        margin-top: 15px;
        text-align: center !important;
    }
}
