/* Auxiliary pages specific styles */

/* Main content for auxiliary pages */
.main-content {
    padding: 140px 0 80px;
    min-height: calc(100vh - 300px);
    text-align: center;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Content blocks for auxiliary pages */
.content-block {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.content-block h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

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

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

.placeholder-content p {
    color: #6b7280;
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

/* Navigation adjustments for auxiliary pages */
.header .nav {
    display: flex;
    align-items: center;
}

/* Responsive design for auxiliary pages */
@media (max-width: 768px) {
    .main-content {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .placeholder-content {
        padding: 2rem 1rem;
    }
}

/* About page specific styles */
.about-hero {
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.approach-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.values-section {
    margin: 4rem 0;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

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

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

.team-section {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.future-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

/* Responsive design for about page */
@media (max-width: 768px) {
    .about-content,
    .approach-section,
    .mission-section,
    .future-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        padding: 2rem;
    }
}