.privacy-page {
    max-width: var(--max-width);
    margin: 2rem auto;
    padding: 0 1rem;
}

.privacy-page h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

.privacy-container {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.privacy-section h2 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.subsection {
    margin-bottom: 2rem;
}

.subsection:last-child {
    margin-bottom: 0;
}

.subsection h3 {
    color: var(--gray-800);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.subsection p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.subsection ul {
    list-style: none;
    margin-left: 1rem;
}

.subsection li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.subsection li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .subsection h3 {
        font-size: 1.125rem;
    }
}