.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}
.consent-popup {
    background: linear-gradient(#10233d, #083742);
    border-radius: 12px;
    box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.consent-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e0e0e0;
}
.consent-header h2 {
    font-size: 22px;
    color: #f3f4f6;
    margin-bottom: 8px;
    font-weight: 600;
}
.consent-header p {
    font-size: 14px;
    color: #8ea492;
    line-height: 1.5;
}
.consent-content {
    padding: 24px 24px 10px 24px;
}
.consent-section {
    margin-bottom: 20px;
}
.consent-section h3 {
    font-size: 16px;
    color: #f3f4f6;
    margin-bottom: 8px;
    font-weight: 600;
}
.consent-section p {
    font-size: 14px;
    color: #8ea492;
    line-height: 1.6;
}
.consent-section ul {
    margin-left: 20px;
    margin-top: 8px;
}
.consent-section li {
    font-size: 14px;
    color: #8ea492;
    line-height: 1.6;
    margin-bottom: 4px;
}
.privacy-link {
    color: #71d875;
    text-decoration: none;
    font-weight: 500;
}
.privacy-link:hover {
    text-decoration: underline;
}
.consent-buttons {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid #e0e0e0;
}
.cBtn {
    flex: 1;
    min-width: 120px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.cBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.cBtn-accept {
    background: #1a73e8;
    color: white;
}
.cBtn-accept:hover:not(:disabled) {
    background: #1557b0;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}
.cBtn-reject {
    background: #f1f3f4;
    color: #202124;
}
.cBtn-reject:hover:not(:disabled) {
    background: #e8eaed;
}
.c-info-box {
    background: #f8f9fa;
    border-left: 4px solid #1a73e8;
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 4px;
}
.c-info-box p {
    font-size: 13px;
    color: #5f6368;
    margin: 0;
}
.hidden {
    display: none;
}
@media (max-width: 480px) {
    .consent-buttons {
        flex-direction: column;
    }
    .cBtn {
        width: 100%;
    }
}