/* Auxiliary Pages Styles */

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

.page-header h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--mint);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-member p:last-child {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Values Section */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h4 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.value-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Content Images */
.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
}

/* Legal Document Enhancements */
.legal-intro {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.legal-intro p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.6;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.contact-info {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    height: 300px;
    background-color: var(--border);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 500;
}

/* Features Grid for About Page */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

/* Approach List */
.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: bold;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.why-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-document h2 {
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.legal-document h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-document a {
    color: var(--navy);
    text-decoration: underline;
}

.legal-document a:hover {
    color: #1e40af;
}

.legal-document strong {
    color: var(--text-dark);
}

/* Brand Link Styling */
.brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand a:hover .brand-name {
    color: #1e40af;
}

/* Footer Legal Section */
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 0 1rem;
    }
    
    .placeholder-image {
        height: 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .content-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .why-item {
        padding: 1.5rem;
    }
    
    .legal-intro {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .content-image {
        height: 200px;
    }
}