/* Privacy Policy Page Styles */
.privacy-content {
    background-color: var(--background-color);
    padding: 40px 0;
}

.privacy-policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius-xlarge);
    box-shadow: var(--card-shadow);
    padding: 40px;
}

.privacy-policy-container h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #1d1d1f 0%, #434344 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-primary);
}

.policy-section h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.policy-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-footer {
    text-align: center;
    color: #86868b;
    font-size: 12px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #d2d2d7;
}

@media (max-width: 600px) {
    .privacy-policy-container {
        padding: 20px 15px;
    }

    .privacy-policy-container h1 {
        font-size: 28px;
    }

    .policy-section h2 {
        font-size: 20px;
    }
} 