/* Auxiliary Pages Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-section.alt-bg {
    background-color: #f8fafc;
}

.content-section h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    font-weight: 600;
}

.content-section h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.content-section h3:first-of-type {
    margin-top: 0;
}

.content-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Mission List */
.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.approach-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.approach-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.25rem;
}

.approach-item p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.value-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.25rem;
}

.value-item p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Enhanced Lists for Legal Pages */
.content-section ul li strong {
    color: #1e293b;
    font-weight: 600;
}

/* Contact Information Styling */
.content-section ul li:has(strong) {
    margin-bottom: 0.75rem;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .approach-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-item,
    .value-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.375rem;
    }
    
    .approach-item,
    .value-item {
        padding: 1.25rem;
    }
    
    .mission-list li {
        padding-left: 1.5rem;
    }
}