*{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.organization-goals {
    max-width: 100%;
    min-height: auto;
    padding: 60px 20px 50px;
    overflow-x: hidden;
    background-color: #f7f9fc;
    border-bottom: 1px solid rgba(72, 140, 183, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.goals-header-text {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.goals-header-text .eyebrow {
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #4c5f77;
    font-size: 13px;
    font-weight: 700;
}

.goals-header-text h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.05;
    color: #102a43;
}

.goals-header-text p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.75;
    color: #5b6779;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.main-goals {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 44px;
    width: 100%;
    max-width: 1080px;
}

.goal {
    flex: 1 1 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    padding: 28px;
    overflow-wrap: break-word;
}

.goal-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: rgba(72, 140, 183, 0.14);
    color: #1f4e79;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.goal-copy h2 {
    margin: 0;
    font-size: 24px;
    color: #102a43;
}

.goal-copy p {
    margin: 14px 0 0;
    color: #5b6779;
    font-size: 16px;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .organization-goals {
        padding: 48px 18px 40px;
    }

    .goals-header-text h1 {
        font-size: 40px;
    }

    .goals-header-text p {
        font-size: 17px;
    }
}

@media (max-width: 700px) {
    .main-goals {
        flex-direction: column;
        align-items: center;
    }

    .goal {
        width: 100%;
        max-width: 520px;
    }
}

@media (prefers-color-scheme: dark) {
    .organization-goals {
        background-color: #111827;
        border-bottom-color: rgba(72, 140, 183, 0.18);
    }

    .goals-header-text .eyebrow,
    .goals-header-text p,
    .goal-copy p {
        color: #cbd5e1;
    }

    .goals-header-text h1,
    .goal-copy h2 {
        color: #f8fafc;
    }

    .goal {
        background: #1f2937;
        border-color: rgba(148, 163, 184, 0.18);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    }

    .goal-symbol {
        background: rgba(96, 165, 250, 0.18);
        color: #bfdbfe;
    }
}
