.educator-features {
    padding: 6rem 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    color: #385880;
}

.educator-features h2 {
    font-family: 'Fredoka', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.educator-features .section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.getting-started {
    padding: 6rem 2rem;
    background: #f8f9fa;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.getting-started h2 {
    font-family: 'Fredoka', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #385880;
}

.getting-started .section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #385880;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #385880;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: 'Fredoka', sans-serif;
}

.step-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-900);
}

.getting-started-cta {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .educator-features,
    .getting-started {
        padding: 4rem 1rem;
    }

    .educator-features h2,
    .getting-started h2 {
        font-size: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }
}

