/* Privacy Policy Page Styles */

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.privacy-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.privacy-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* Section Styles */
.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.privacy-section h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    flex-shrink: 0;
    color: var(--accent-orange);
    transition: color 0.3s ease;
}

.privacy-section h3:hover .section-icon {
    color: var(--accent-purple);
}

.privacy-section h3 span {
    flex: 1;
}

.privacy-section h3::before {
    content: '';
    display: none;
}

.privacy-section h4 {
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* List Styles */
.privacy-list {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.privacy-list li::before {
    content: '›';
    position: absolute;
    left: -1rem;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-list li strong {
    color: var(--accent-orange);
}

/* Checkmark List */
.privacy-checklist li::before {
    content: '✓';
    color: var(--success);
    left: -1.2rem;
    font-weight: bold;
}

/* Call to Action Links */
.privacy-section a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.privacy-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.privacy-section a:hover {
    color: var(--accent-purple);
}

.privacy-section a:hover::after {
    width: 100%;
    background: var(--accent-purple);
}

/* Divider */
.privacy-divider {
    border: none;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    margin: 3rem 0;
}

/* Footer Info */
.privacy-footer {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    margin-top: 3rem;
}

.privacy-footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.privacy-footer strong {
    color: var(--accent-orange);
}

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

/* Responsive */
@media (max-width: 768px) {
    .privacy-container {
        padding: 2rem 1rem;
    }

    .privacy-header h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .privacy-section h4 {
        font-size: 1rem;
    }

    .privacy-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1.5rem 1rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
    }

    .privacy-header h2 {
        font-size: 1.3rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }
}
