.privacy-container {
    padding: 120px 0 80px;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.update-date {
    color: var(--text-light);
    font-size: 16px;
}

.privacy-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow);
}

.privacy-content section {
    margin-bottom: 48px;
}

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

.privacy-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.privacy-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.privacy-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.privacy-content ul, .privacy-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.privacy-content li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.intro {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid var(--primary);
    padding: 24px 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.highlight-box h4 {
    color: var(--primary);
    margin-bottom: 16px;
}

.highlight-box ul {
    margin-left: 20px;
    margin-bottom: 0;
}

.note {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 15px;
    margin-top: 20px;
}

.contact-section {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
}

.contact-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 40px 24px;
    }
    
    .privacy-header h1 {
        font-size: 36px;
    }
    
    .privacy-content h2 {
        font-size: 26px;
    }
    
    .privacy-content h3 {
        font-size: 20px;
    }
}

