/* privacypolicy.css */
.privacy-page-header {
    padding: 120px 0 60px 0;
    text-align: center;
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.privacy-page-header .hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.3;
}
.privacy-page-header .hero-glow-1 {
    top: -100px;
    left: -100px;
    background: var(--brand-color);
}
.privacy-page-header .hero-glow-2 {
    bottom: -100px;
    right: -100px;
    background: var(--accent-secondary);
}

.privacy-header-content {
    position: relative;
    z-index: 1;
}

.privacy-header-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.privacy-header-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content-section {
    padding: 60px 0 100px 0;
    background: var(--bg-primary);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.privacy-header-info {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.privacy-header-info h2 {
    color: var(--brand-color);
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h3 {
    color: var(--brand-color);
    font-size: 1.35rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h3 .number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(6, 78, 59, 0.1);
    color: var(--brand-color);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.privacy-section h4 {
    color: var(--brand-color);
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-section p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.privacy-section li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-main);
}

.privacy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-secondary);
}

.company-name {
    font-weight: 700;
    color: var(--brand-color);
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 24px;
    }
}
