/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--sand-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--persimmon);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--persimmon);
    border-radius: 1px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Sections */
.page-section {
    padding: 4rem 0;
}

.page-section.alt-bg {
    background: var(--sand-light);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

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

.value h4 {
    color: var(--persimmon);
    margin-bottom: 1rem;
}

.value p {
    margin: 0;
    font-size: 0.95rem;
}

/* Approach Items */
.approach-list {
    margin-top: 2rem;
}

.approach-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.approach-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.approach-item strong {
    display: block;
    color: var(--persimmon);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.approach-item p {
    margin: 0;
    color: var(--charcoal);
    opacity: 0.9;
}

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

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.impact-stat:hover {
    transform: translateY(-2px);
}

.impact-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--persimmon);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-stat .stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    display: block;
    margin-bottom: 1rem;
}

.impact-stat p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Policy Content Styles */
.policy-header {
    background: var(--sand-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--persimmon);
}

.policy-header p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand-dark);
}

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

.policy-section h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-section h3 {
    color: var(--persimmon);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.125rem;
}

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

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-details p {
    margin-bottom: 0.75rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--persimmon);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Team Section */
.team-grid {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.team-member:nth-child(even) {
    grid-template-columns: 1fr 200px;
}

.team-member:nth-child(even) .member-info {
    order: 1;
}

.team-member:nth-child(even) .member-photo {
    order: 2;
}

.member-photo .image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    min-height: 200px;
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
}

.member-info h3 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-info h4 {
    color: var(--persimmon);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.member-info p {
    margin: 0;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.9;
}

/* Approach Illustration */
.approach-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-notice {
    background: var(--sand-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--persimmon);
}

.content-notice p {
    margin-bottom: 1rem;
}

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

.content-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
}

.content-placeholder p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.content-placeholder ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    color: var(--charcoal);
    opacity: 0.8;
}

.content-placeholder li {
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness for Auxiliary Pages */
@media (max-width: 768px) {
    .nav-menu ul {
        gap: 1rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-values,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member,
    .team-member:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-member:nth-child(even) .member-info,
    .team-member:nth-child(even) .member-photo {
        order: initial;
    }
    
    .member-photo .image-placeholder {
        width: 150px;
        height: 150px;
        min-height: 150px;
        margin: 0 auto;
    }
    
    .team-img {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .nav-menu ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 3rem 0;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .content-notice {
        padding: 1.5rem;
    }
    
    .content-placeholder {
        padding: 2rem 1.5rem;
    }
    
    .policy-header {
        padding: 1rem;
    }
    
    .contact-details {
        padding: 1rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
}