.page-main {
    min-height: calc(100vh - 200px);
    padding: 60px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-200);
}

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

.page-lead {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-block p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.about-image-section {
    margin: 60px 0;
}

.about-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 16px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.svg-illustration {
    margin-top: 32px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.svg-illustration svg {
    width: 100%;
    height: auto;
}

.empty-state {
    padding: 80px 40px;
    text-align: center;
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
}

.empty-state p {
    color: var(--gray-600);
    font-size: 16px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-lead {
        font-size: 18px;
    }

    .content-block h2 {
        font-size: 28px;
    }

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

    .about-image-placeholder {
        height: 250px;
    }
}