/* Page-specific styles for Privacy Policy and Content Rights pages */

.page-content {
    padding-top: 100px;
    min-height: 100vh;
    background: #f8f9fa;
}

.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #009688 0%, #00796b 100%);
    color: white;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.content-section {
    padding: 2.5rem;
    border-bottom: 1px solid #eee;
}

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

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #009688;
    display: inline-block;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin: 2rem 0 1rem 0;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.8rem;
    position: relative;
}

.content-section li::marker {
    color: #009688;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #009688;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info a {
    color: #009688;
    text-decoration: none;
    font-weight: 500;
}

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

/* Enhanced mobile responsiveness for pages */
@media (max-width: 768px) {
    .page-content {
        padding-top: 80px;
    }
    
    .page-header {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        margin: 0 10px 2rem 10px;
        border-radius: 8px;
    }
    
    .content-section {
        padding: 2rem 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
    
    .content-section p,
    .content-section li {
        font-size: 1rem;
    }
    
    .content-section ul {
        padding-left: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem 1rem;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
}

/* Print styles for pages */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .page-content {
        padding-top: 0;
    }
    
    .page-header {
        background: none;
        color: #333;
        padding: 1rem 0;
    }
    
    .content-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
    
    .content-section h2 {
        page-break-after: avoid;
    }
}

/* Accessibility improvements */
.content-section a {
    color: #009688;
    text-decoration: underline;
    font-weight: 500;
}

.content-section a:hover,
.content-section a:focus {
    color: #00796b;
    outline: 2px solid #009688;
    outline-offset: 2px;
}

/* Focus styles for keyboard navigation */
.nav-link:focus,
.btn:focus {
    outline: 2px solid #009688;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .content-section {
        border-bottom: 2px solid #333;
    }
    
    .content-section h2 {
        border-bottom-color: #333;
    }
    
    .contact-info {
        border-left-color: #333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
