/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.back-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.back-link:hover {
    background-color: #f3f4f6;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 64px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.page-hero .hero-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.content-section.cta-section h2 {
    color: white;
    margin-bottom: 24px;
}

.content-section.cta-section p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.content-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.content-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-block li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.content-block a {
    color: #2563eb;
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.content-text {
    max-width: none;
}

.content-image {
    display: flex;
    justify-content: center;
}

.section-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Story Section */
.story-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.story-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.story-text {
    flex: 1;
}

/* Team Section */
.team-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.team-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-image-main {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.team-image-secondary {
    width: 70%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-left: auto;
}

/* Values Grid (About Page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
}

.value-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 0;
}

.value-item p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Contact Info */
.contact-info {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 24px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1rem;
}

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

.contact-info strong {
    color: #374151;
    font-weight: 600;
}

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

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 48px 0;
    }

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

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

    .content-block h2 {
        font-size: 1.8rem;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-item {
        padding: 24px 16px;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-content {
        flex-direction: column;
        gap: 24px;
    }

    .story-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-images {
        order: -1;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .content-block {
        padding: 0 16px;
    }

    .content-block h2 {
        font-size: 1.6rem;
    }

    .content-block p,
    .content-block li {
        font-size: 1rem;
    }

    .contact-info {
        padding: 16px;
    }

    .section-image {
        height: 250px;
    }

    .story-image {
        height: 180px;
    }

    .team-image-main {
        height: 180px;
    }

    .team-image-secondary {
        width: 100%;
        height: 130px;
        margin-left: 0;
    }
}