.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0,128,128,0.95) 0%, rgba(44,62,80,0.95) 100%);
    color: white;
    padding: 1rem 0;
    z-index: 9998;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    position: relative;
}

.cookie-message {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-message i {
    font-size: 1.5rem;
    color: #ffd700;
}

.cookie-message p {
    margin-left: 2rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.cookie-link {
    color: #ffd700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: white;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.cookie-actions .btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-actions .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
}

.cookie-actions .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.cookie-actions .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Terms Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px 15px 0 0;
}

.terms-details ul {
    padding-left: 1.5rem;
}

.terms-details li {
    margin-bottom: 0.25rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-consent-banner .container {
        padding: 0 1rem;
    }
    
    .cookie-message {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .cookie-message p {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        padding: 1.5rem 0;
    }
    
    .cookie-actions .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}