/* Light Theme Variables (Default) */
:root {

    --privacy-content-bg: #ffffff;
    --privacy-text: #2c3e50;
    --privacy-text-secondary: #5a6c7d;
    --privacy-accent: #8b5cf6;
    --privacy-accent-light: #a78bfa;
    --privacy-accent-lighter: #ddd6fe;
    --privacy-accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    --privacy-section-bg: #ffffff;
    --privacy-section-border: #e5e7eb;
    --privacy-highlight-bg: #f3f0ff;
    --privacy-shadow: 0 1px 4px rgba(139, 92, 246, 0.08);
    --privacy-shadow-hover: 0 2px 8px rgba(139, 92, 246, 0.12);
    --privacy-icon-bg: #f3f0ff;
}

/* Dark Theme Variables */
.dark-mode {

    --privacy-content-bg: #1a1f28;
    --privacy-text: #e8eaed;
    --privacy-text-secondary: #b8bfc7;
    --privacy-accent: #dbfb53;
    --privacy-accent-light: #e5fc85;
    --privacy-accent-lighter: #f0fdb8;
    --privacy-accent-gradient: linear-gradient(135deg, #dbfb53 0%, #e5fc85 100%);
    --privacy-section-bg: #1a1f28;
    --privacy-section-border: #2d3340;
    --privacy-highlight-bg: #1f2a2e;
    --privacy-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    --privacy-shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.35);
    --privacy-icon-bg: #1f2a2e;
}

/* Main Container */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    background: var(--privacy-bg);
    min-height: 100vh;
}

/* Content Area */
.privacy-content {

    margin: 0 auto;
}

/* Intro Section */
.privacy-intro-section {
    background: var(--privacy-section-bg);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--privacy-accent-lighter);
    box-shadow: var(--privacy-shadow);
}

.privacy-intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--privacy-text);
    margin: 0;
}

.privacy-brand {
    color: var(--privacy-accent);
    font-weight: 600;
}

/* Section Blocks */
.privacy-section {
    background: var(--privacy-section-bg);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--privacy-section-border);
    box-shadow: var(--privacy-shadow);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    box-shadow: var(--privacy-shadow-hover);
    transform: translateY(-1px);
}

.privacy-section-highlighted {
    border: 2px solid var(--privacy-accent);
    background: var(--privacy-highlight-bg);
}

/* Section Header */
.privacy-section-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid var(--privacy-accent-lighter);
}

.privacy-section-icon {
    font-size: 1.75rem;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--privacy-icon-bg);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--privacy-accent);
}

.privacy-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--privacy-text);
    margin: 0;
    line-height: 1.3;
}

/* Section Content */
.privacy-section-content {
    color: var(--privacy-text);
}

.privacy-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--privacy-text-secondary);
    margin: 0 0 1rem 0;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

/* Lists */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-list-item {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--privacy-text-secondary);
}

.privacy-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.625rem;
    height: 0.625rem;
    background: var(--privacy-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--privacy-accent-lighter);
}

.privacy-list-item:last-child {
    margin-bottom: 0;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1rem 0.75rem;
    }
    
    .privacy-section {
        padding: 1rem 1.25rem;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .privacy-intro-section {
        padding: 1rem 1.25rem;
        border-radius: 10px;
        margin-bottom: 1.25rem;
    }
    
    .privacy-section-header {
        gap: 0.75rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.75rem;
    }
    
    .privacy-section-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    
    .privacy-section-title {
        font-size: 1.125rem;
    }
    
    .privacy-list-item {
        padding-left: 1.5rem;
        margin-bottom: 0.625rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .privacy-container {
        padding: 0.75rem 0.5rem;
    }
    
    .privacy-section {
        padding: 0.875rem 1rem;
        margin-bottom: 0.875rem;
    }
    
    .privacy-intro-section {
        padding: 0.875rem 1rem;
        margin-bottom: 1rem;
    }
    
    .privacy-section-header {
        gap: 0.625rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.625rem;
    }
    
    .privacy-section-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.375rem;
        border-radius: 8px;
    }
    
    .privacy-section-title {
        font-size: 1.0625rem;
    }
    
    .privacy-text,
    .privacy-intro-text {
        font-size: 0.875rem;
        line-height: 1.55;
    }
    
    .privacy-list-item {
        font-size: 0.875rem;
        padding-left: 1.375rem;
        margin-bottom: 0.5rem;
    }
    
    .privacy-list-item::before {
        width: 0.5rem;
        height: 0.5rem;
        top: 0.375rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .privacy-container {
        padding: 0.5rem 0.375rem;
    }
    
    .privacy-section,
    .privacy-intro-section {
        padding: 0.75rem 0.875rem;
    }
    
    .privacy-section-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
    }
}

/* Smooth Transitions */
.privacy-section,
.privacy-section-header,
.privacy-list-item::before {
    transition: all 0.3s ease;
}

/* Print Styles */
@media print {
    .privacy-container {
        background: white;
        padding: 0;
    }
    
    .privacy-section {
        box-shadow: none;
        border: 1px solid #e5e7eb;
        page-break-inside: avoid;
        margin-bottom: 0.5rem;
    }
}

/* Alert Boxes */
.privacy-alert {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid;
    transition: all 0.3s ease;
}

.privacy-alert-warning {
    background: #fef3c7;
    border-color: #f59e0b;
}

.dark-mode .privacy-alert-warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: #f59e0b;
}

.privacy-alert-success {
    background: #d1fae5;
    border-color: #10b981;
}

.dark-mode .privacy-alert-success {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.privacy-alert-icon {
    font-size: 1.75rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.privacy-alert-warning .privacy-alert-icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
}

.privacy-alert-success .privacy-alert-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.2);
}

.privacy-alert-content {
    flex: 1;
}

.privacy-alert-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--privacy-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.privacy-alert-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--privacy-text-secondary);
    margin: 0;
}

/* Footer */
.privacy-footer {
    background: var(--privacy-section-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid var(--privacy-section-border);
    box-shadow: var(--privacy-shadow);
    text-align: center;
}

.privacy-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--privacy-text-secondary);
    margin: 0;
}

.privacy-contact-icon {
    font-size: 1.375rem;
    color: var(--privacy-accent);
}

.privacy-contact-link {
    color: var(--privacy-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-contact-link:hover {
    color: var(--privacy-accent-light);
    text-decoration: underline;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .privacy-alert {
        gap: 0.875rem;
        padding: 1rem;
    }
    
    .privacy-alert-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.5rem;
    }
    
    .privacy-footer {
        padding: 1.25rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .privacy-alert {
        gap: 0.75rem;
        padding: 0.875rem;
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-alert-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.375rem;
        margin: 0 auto;
    }
    
    .privacy-alert-title {
        font-size: 1rem;
    }
    
    .privacy-alert-text {
        font-size: 0.875rem;
    }
    
    .privacy-footer {
        padding: 1rem;
    }
    
    .privacy-contact {
        flex-direction: column;
        gap: 0.375rem;
        font-size: 0.9375rem;
    }
    
    .privacy-contact-icon {
        font-size: 1.25rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .privacy-alert {
        padding: 0.75rem;
    }
    
    .privacy-footer {
        padding: 0.875rem;
    }
}