/* Additional styles for auxiliary pages */

/* Page Navigation */
.page-nav {
    margin-left: auto;
}

.nav-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.nav-link:hover {
    background-color: #f3f4f6;
}

/* Page Main Content */
.page-main {
    min-height: 60vh;
    padding: 2rem 0;
    background: #ffffff;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    border-left: 4px solid #4f46e5;
    padding-left: 1rem;
}

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

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

/* Policy Placeholder Styles */
.policy-placeholder {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.policy-placeholder p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.policy-placeholder ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    color: #6b7280;
}

.policy-placeholder li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* Responsive adjustments for auxiliary pages */

/* About Us Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text {
    text-align: left;
}

.about-image {
    display: flex;
    justify-content: center;
}

.story-photo,
.mission-photo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.approach-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.approach-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #6b7280;
    line-height: 1.6;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.commitment-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.commitment-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-nav {
        margin-left: 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 0 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-placeholder {
        padding: 2rem 1rem;
    }
    
    .about-content,
    .about-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        direction: ltr;
    }
    
    .about-text {
        text-align: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 1rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-section {
        margin-bottom: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.25rem;
        padding-left: 0.75rem;
    }
    
    .approach-item,
    .commitment-item {
        padding: 1rem;
    }
}