/* Privacy Policy Page Styles */
.page-container {
    min-width: 800px;
    min-height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.page-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.back-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.back-link:hover {
    background: #667eea;
    color: white;
}

.page-header h1 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.privacy-content {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section:last-of-type {
    margin-bottom: 1rem;
}

.policy-section h2 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.policy-section ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-section li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #555;
}

.policy-section strong {
    color: #333;
    font-weight: 600;
}

.policy-section a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.policy-section a:hover {
    border-bottom-color: #667eea;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .privacy-content {
        padding: 2rem 1.5rem;
    }
    
    .content-wrapper {
        padding: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .page-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 1.5rem 1rem;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
}

@media (max-width: 800px) {
    .page-container {
        min-width: 800px;
    }
    
    .privacy-content {
        min-width: 800px;
    }
}

@media (max-height: 600px) {
    .page-header {
        padding: 1rem 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 2rem 2rem;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
    }
}

@media (max-height: 400px) {
    .page-container {
        min-height: 400px;
    }
}
