/* Auxiliary Pages Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #64748b;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* Links */
a {
    color: #2563EB;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.nav-link {
    color: #64748b;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #f1f5f9;
    text-decoration: none;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.about-section,
.approach-section,
.values-section,
.commitment-section,
.team-section,
.policy-section {
    padding: 60px 0;
}

.about-section:nth-child(odd),
.policy-section:nth-child(odd) {
    background-color: #f8fafc;
}

.approach-section,
.values-section,
.team-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.approach-section .container,
.values-section .container,
.team-section .container {
    position: relative;
    z-index: 1;
}

.commitment-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: 0;
}

.commitment-section .container {
    position: relative;
    z-index: 1;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.approach-item {
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.approach-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.approach-item h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.approach-item p {
    margin: 0;
    line-height: 1.6;
}

.values-list {
    margin-top: 32px;
}

.value-item {
    margin-bottom: 40px;
    padding-bottom: 32px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item h3 {
    color: #1e293b;
    margin-bottom: 12px;
}

.value-item p {
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 48px;
    padding: 40px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/3184339/pexels-photo-3184339.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Policy Sections */
.policy-section h2 {
    border-bottom: 3px solid #667eea;
    padding-bottom: 12px;
    margin-bottom: 32px;
    position: relative;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.policy-section h3 {
    color: #1e293b;
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.policy-section ul {
    margin-bottom: 24px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.policy-section li strong {
    color: #1e293b;
    font-weight: 600;
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px;
    border-radius: 20px;
    margin-top: 32px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/3184287/pexels-photo-3184287.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: white;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: white;
    font-weight: 600;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 48px 0 24px 0;
    margin-top: auto;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/3184394/pexels-photo-3184394.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand .brand {
    justify-content: flex-start;
    margin-bottom: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-description {
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a, .footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: white;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .logo {
        width: 32px;
        height: 32px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .approach-item {
        padding: 24px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-brand .brand {
        justify-content: center;
    }
    
    .about-section,
    .approach-section,
    .values-section,
    .commitment-section,
    .team-section,
    .policy-section {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 32px 24px;
    }
    
    .contact-info {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .brand-name {
        font-size: 1.125rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .approach-item {
        padding: 20px 16px;
    }
    
    .cta-section {
        padding: 24px 16px;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .header, .footer {
        display: none;
    }
    
    .page-hero {
        background: none;
        padding: 20px 0;
    }
    
    .cta-section {
        background: none;
        border: 1px solid #ccc;
    }
    
    .approach-item {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .policy-section {
        break-inside: avoid;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .approach-item {
        border: 2px solid #000;
    }
    
    .cta-button {
        border: 2px solid #000;
    }
    
    .contact-info {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .approach-item {
        transition: none;
    }
    
    .approach-item:hover {
        transform: none;
    }
    
    .cta-button {
        transition: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
}