#cookie-consent-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transition: bottom 0.4s ease;
    padding: 20px;
}

#cookie-consent-popup.show {
    bottom: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-text h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #073b54;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.cookie-learn-more {
    color: #073b54;
    font-size: 13px;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #073b54 0%, #0a5070 100%);
    color: #fff;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 59, 84, 0.3);
}

.cookie-btn-decline {
    background: #f0f0f0;
    color: #666;
}

.cookie-btn-decline:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    #cookie-consent-popup {
        padding: 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-icon {
        font-size: 36px;
    }

    .cookie-consent-text h3 {
        font-size: 18px;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 150px;
        padding: 10px 20px;
        font-size: 14px;
    }
}