main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 60px 2rem;
    position: relative;
    z-index: 10;
}

.content-container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--on-surface);
}

h1 span {
    color: var(--primary);
}

.mission-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--on-surface-variant);
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {


    h1 {
        font-size: 2rem;
    }

    .mission-text {
        font-size: 1.1rem;
    }
}