:root {
        --blue: #1C418C;
        --green: #68BA62;
        --dark: #111827;
        --gray: #64748b;
    }

    .option-one {
        padding: 90px 20px 70px;
        text-align: center;

        background:
            linear-gradient(
                rgba(28,65,140,.90),
                rgba(28,65,140,.90)
            ),
            url("https://images.unsplash.com/photo-1632759145351-1d592919f522?auto=format&fit=crop&w=1800&q=80")
            center / cover;

        color: white;
    }

    .option-one h1 {
        font-size: clamp(38px, 5vw, 62px);
        font-weight: 800;
        margin-bottom: 20px;
        font-family: 'Inter', sans-serif;
    }

    .option-one > p {
        max-width: 720px;
        margin: 0 auto 35px;
        font-size: 18px;
        line-height: 1.7;
        font-family: 'Inter', sans-serif;
    }

    .cta-button {
        display: inline-block;
        background: var(--green);
        color: white;
        padding: 16px 30px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: .25s;
        font-family: 'Inter', sans-serif;
    }

    .cta-button:hover {
        background: #56a951;
        color: white;
        transform: translateY(-2px);
    }

    .widget-section {
        background: white;
        padding: 60px 20px;
    }

    .widget-container {
        max-width: 900px;
        margin: auto;
    }

    .widget-title {
        text-align: center;
        color: var(--blue);
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 10px;
        font-family: 'Inter', sans-serif;
    }

    .widget-subtitle {
        text-align: center;
        color: var(--gray);
        margin-bottom: 40px;
        font-family: 'Inter', sans-serif;
    }
