.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 63%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    display: none; /* По умолчанию скрыто */
    animation: slideUp 0.4s ease;
    border: 1px solid #e9ecef;
    background-color: rgba(255, 255, 255, 1);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#cookieConsent .cookie-content p {
    margin: 0;
    flex: 1;
    color: #2a2e32;
    font-size: 14px;
    line-height: 1.5;
}

#cookieConsent .cookie-content a:hover {
    text-decoration: underline;
}

#cookieConsent .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookieConsent .cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

#cookieConsent .accept-btn {
    background: #6d9ea9;
    color: white;
}

#cookieConsent .accept-btn:hover {
    background: #5c8790;
    transform: translateY(-1px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
.privacy-policy h3, .privacy-policy h2 {
    color: #000000;
}
.privacy-policy p, .privacy-policy tbody, .privacy-policy ul {
    font-size: 12pt;
    color: #000000;
}
.privacy-policy ul li:before {
    content: "-";
    color: #000000;
}
.privacy-table td {
    padding: 10px;
}