/* Auxiliary Pages Styles */

.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.team-role {
    color: #F97316;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background-color: #0F172A;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-header .brand-name {
    color: white;
    font-size: 1.25rem;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.page-nav a {
    color: #CBD5E1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-nav a:hover,
.page-nav a.active {
    color: #F97316;
}

.page-nav .nav-cta {
    background-color: #F97316;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-nav .nav-cta:hover {
    background-color: #EA580C;
    color: white;
}

/* Page Main Content */
.page-main {
    min-height: calc(100vh - 200px);
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.page-hero p {
    color: #CBD5E1;
    font-size: 1.1rem;
    margin: 0;
}

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

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

.content-section.cta-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    text-align: center;
}

.content-section.cta-section h2 {
    color: white;
}

.content-section.cta-section p {
    color: #CBD5E1;
}

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

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.content-visual {
    text-align: center;
}

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

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

.mission-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

/* Expertise Content */
.expertise-content {
    text-align: center;
}

.expertise-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 600;
}

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

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

.approach-item h3 {
    color: #0F172A;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #64748B;
    margin: 0;
}

/* Legal Content */
.legal-content {
    padding: 40px 0 60px;
}

.legal-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section h2 {
    color: #0F172A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F97316;
}

.legal-section h3 {
    color: #0F172A;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.legal-section .contact-info {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #F97316;
    margin-top: 1.5rem;
}

.legal-section .contact-info p {
    margin-bottom: 1rem;
}

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

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .page-nav {
        gap: 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-grid,
    .expertise-stats,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 0.75rem 0;
    }

    .page-hero {
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .content-section {
        padding: 40px 0;
    }

    .mission-item,
    .stat-item,
    .approach-item {
        padding: 1.5rem;
    }

    .legal-section .contact-info {
        padding: 1.5rem;
    }

    .content-image {
        height: 250px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}