/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: var(--graphite);
    font-weight: 400;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section.alt-bg {
    background-color: var(--light-gray);
}

.content-section.cta-section {
    background-color: var(--deep-navy);
    text-align: center;
}

.content-section.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.content-section.cta-section p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 32px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.content-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.content-text p {
    font-size: 16px;
    color: var(--graphite);
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-text .cta-button {
    margin-top: 24px;
}

.content-main-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.1);
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.approach-list li {
    color: var(--graphite);
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    font-size: 16px;
}

.approach-list li::before {
    content: "→";
    color: var(--teal);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-navy);
    text-align: center;
    margin-bottom: 48px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--graphite);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Content */
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

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

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--teal);
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-navy);
    margin: 24px 0 12px 0;
}

.policy-section p {
    font-size: 16px;
    color: var(--graphite);
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    font-size: 16px;
    color: var(--graphite);
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-section li strong {
    color: var(--deep-navy);
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background-color: var(--light-gray);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-info strong {
    color: var(--deep-navy);
    font-weight: 600;
}

.contact-info a {
    color: var(--teal);
    text-decoration: none;
}

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

/* Header Logo Link */
.logo-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-section a:hover .brand-name {
    color: var(--teal);
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-links a {
    color: var(--light-graphite);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--teal);
}

.cta-button {
    display: inline-block;
    text-decoration: none;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .value-card {
        padding: 24px;
    }
    
    .policy-content {
        padding: 0 16px;
    }
}