.service-card {
        background: #fff;
        border: 1px solid #ececec;
        padding: 44px 46px;
        max-width: 420px;
        box-sizing: border-box;
        position: relative;
        min-height:500px;
    }

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: #e64b3c;
        /* same red as price/checks */
    }

    /* Title */
    .service-card__title {
        text-align: center;
        margin: 0 0 12px;
        font-size: 32px;
        font-weight: 700 !important;
        color: #183a3a !important;
    }

    /* Price */
    .service-card__price {
        text-align: center;
        margin-bottom: 24px;
    }

    .service-card__currency {
        color: #e64b3c;
        font-weight: 700 !important;
        font-size: 32px;
        vertical-align: super;
        margin-right: 3px;
    }

    .service-card__amount {
        color: #e64b3c;
        font-weight: 800 !important;
        font-size: 44px;
        line-height: 1;
    }

    /* Intro / separator */
    .service-card__intro {
        text-align: center;
        margin: 0 0 28px;
        padding-top: 20px;
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        border-top: 1px solid #ececec;
    }

    /* List */
    .service-card__list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #6b7c80;
        font-size: 15.5px;
        line-height: 1.85;
        tex-align:left;
    }

    .service-card__list li {
        position: relative;
        padding-left: 26px;
        margin: 8px 0;
    }

    .service-card__list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0.1em;
        color: #e64b3c;
        font-weight: 800;
        font-size: 15px;
    }

    .a-la-carte-card {
        padding: 36px;
        min-height:320px !important;
    }

    .a-la-carte-card .service-card__title {
        margin-bottom: 16px;
        font-size: 22px;
    }

    /* Subtle separator */
    .a-la-carte-divider {
        height: 1px;
        width: 100%;
        /* short = elegant */
        background: #ececec;
        margin: 0 0 20px;
    }

    /* List spacing */
    .a-la-carte-card ul {
        list-style: disc;
        padding-left: 1.2em;
        margin: 0;
        color: #6b7c80;
        line-height: 1.7;
        text-align:left;
    }

    .a-la-carte-card li {
        margin: 6px 0;
    }