/* Auxiliary Pages Specific Styles */

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

.page-nav a {
    color: #b8860b;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #b8860b;
    transition: all 0.3s ease;
}

.page-nav a:hover {
    background-color: #b8860b;
    color: #fafafa;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a2e2e 0%, #2a4a4a 100%);
    padding: 4rem 0;
    color: #fafafa;
    text-align: center;
}

.page-hero h1 {
    color: #fafafa;
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Main Content */
.main-content {
    padding: 6rem 0;
    background-color: #fafafa;
}

.content-block {
    margin-bottom: 6rem;
}

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

.content-block h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #1a2e2e;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Content Layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

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

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

.content-left,
.content-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Approach Highlights */
.approach-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.highlight-item h4 {
    color: #1a2e2e;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    margin-bottom: 0;
    color: #666;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 46, 46, 0.1);
    text-align: center;
}

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

.expertise-card h3 {
    color: #1a2e2e;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #555;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.policy-section {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 46, 46, 0.1);
    border-left: 4px solid #b8860b;
}

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

.policy-section h2 {
    color: #1a2e2e;
    margin-bottom: 1.5rem;
    text-align: left;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

/* About Us Specific Styles */
.mission-visual,
.methodology-visual,
.results-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 46, 46, 0.1);
    padding: 1rem;
}

.achievement-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.achievement-item h4 {
    color: #1a2e2e;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    margin-bottom: 0;
    color: #666;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-nav {
        margin-left: 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-section {
        padding: 2rem;
    }
    
    .main-content {
        padding: 4rem 0;
    }
    
    .content-block {
        margin-bottom: 4rem;
    }
    
    .mission-visual svg,
    .methodology-visual svg,
    .results-visual svg {
        width: 100%;
        height: auto;
    }
    
    .achievement-highlights {
        gap: 1rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
}