.page-hero {
    position: relative;
    padding: calc(var(--spacing-xl) + 2rem) 0 var(--spacing-xl);
    text-align: center;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: var(--spacing-lg) 0;
}

.content-section.alternate {
    background: var(--bg-secondary);
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

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

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

[dir="rtl"] .content-row.reverse {
    direction: ltr;
}

[dir="rtl"] .content-row.reverse > * {
    direction: rtl;
}

.content-text {
    max-width: 500px;
}

.content-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.content-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.content-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}
.content-image.mission {
    background: url('https://ideogram.ai/assets/image/lossless/response/gZ400TrpTb-VqeNvbsny2g') center/cover no-repeat;
}
.content-image.f {
    background: url('https://ideogram.ai/assets/image/lossless/response/lXO8UghCSQK3b7HWOFSfTA') center/cover no-repeat;
}
.content-image.s{
    background: url('https://ideogram.ai/assets/image/lossless/response/5BbHaZ8aQwKREA6OsqqJiA') center/cover no-repeat;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ember-white);
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 111, 163, 0.2), rgba(138, 92, 246, 0.2), rgba(91, 140, 255, 0.2));
}

.cta-section {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .section-title {
    margin-bottom: var(--spacing-sm);
}

.cta-content .section-subtitle {
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .content-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .content-row.reverse {
        direction: ltr;
    }

    [dir="rtl"] .content-row.reverse {
        direction: rtl;
    }

    .content-text {
        max-width: 100%;
    }

    .content-image {
        height: 300px;
    }
}
