.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #e5e5e5;
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-container {
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-consent-icon {
    color: #3381d3;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-consent-text h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-consent-link {
    color: #3381d3;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
}

.cookie-consent-link:hover {
    color: #28527a;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cookie-btn-decline {
    background: #f5f5f5;
    color: #666;
    border-color: #ddd;
}

.cookie-btn-decline:hover {
    background: #e8e8e8;
    color: #333;
}

.cookie-btn-accept {
    background: #3381d3;
    color: #fff;
    border-color: #3381d3;
}

.cookie-btn-accept:hover {
    background: #28527a;
    border-color: #28527a;
}

@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-consent-icon {
        margin-top: 0;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        padding: 12px 16px;
    }

    .cookie-consent-text h4 {
        font-size: 15px;
    }

    .cookie-consent-text p {
        font-size: 13px;
    }
}
