/* Page-specific styles for auxiliary pages */

/* Policy content styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
}

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

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 1rem;
}

.policy-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #4A5568;
    margin: 1.5rem 0 0.5rem 0;
}

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

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.page-main {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
}

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

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

.page-header p {
    font-size: 1.1rem;
    color: #4A5568;
    opacity: 0.8;
}

/* About Page Styles */
.about-intro,
.about-section,
.approach-section,
.team-section,
.values-section {
    margin-bottom: 3rem;
}

.about-intro {
    background: #F7FAFC;
    padding: 3rem 0;
    border-radius: 12px;
    margin-bottom: 4rem;
}

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

.intro-text h2,
.approach-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 1.5rem;
}

.intro-text p,
.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.intro-image,
.approach-image {
    display: flex;
    justify-content: center;
}

.intro-image svg,
.approach-image svg {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
}

.about-content,
.approach-content,
.team-content,
.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2,
.team-content h2,
.values-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content p,
.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

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

.value-item {
    background: #F7FAFC;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 1.2rem;
}

.value-item p {
    color: #4A5568;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Content placeholders for other pages */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-placeholder {
    background: #F7FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.content-placeholder p {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

/* Responsive design for pages */
@media (max-width: 768px) {
    .intro-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .intro-text h2,
    .approach-text h2,
    .about-content h2,
    .team-content h2,
    .values-content h2 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .content-placeholder {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-intro {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .intro-text h2,
    .approach-text h2,
    .about-content h2,
    .team-content h2,
    .values-content h2 {
        font-size: 1.6rem;
    }
    
    .content-placeholder {
        padding: 1.5rem;
    }
}