.hero {
    padding-top: 12px;
    padding-bottom: 24px;
    margin-bottom: 20px;
    border-bottom: 2px dashed #000000;

    text-align: center;
}

.hero h1 {
    margin-top: 0;
    margin-bottom: 18px;

    font-size: 42px;
    font-weight: normal;
}

.hero-lead {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.45;
}

.hero p {
    margin-top: 0;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 32px;
        justify-content: center;
}

.hero-button {
    display: inline-block;
    padding: 12px 18px;
    border: 1px solid #000000;
    background: #ffffff;
    text-decoration: none;
}

.hero-button:hover {
    /*border-bottom-width: 3px;*/
}

.hero-button:active,
.hero-button:focus {
    background-color: #f7dc6f;
}

.hero-button-secondary {
    background: #f5f5f5;
}


.section {
    padding: 4px 2px;
    margin: 4px 2px;
    border-bottom: 2px dashed #000000;
}

.section:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
}

.feature-row {
    display: flex;
    /*align-items: center;*/
    align-items: flex-start;
    gap: 36px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    margin-top: 0;
    margin-bottom: 16px;

    font-size: 30px;
    font-weight: normal;
}

.feature-text p {
    margin-top: 0;
    margin-bottom: 14px;
}

.feature-image, .feature-image2 {
    flex: 1;
}

.feature-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 8px 0;
    /*border: 1px solid #000000;*/



    /* Solid grey border */
     /*border: 1px solid #808080;*/

     /* Grey shadow: 10px right, 10px down, 15px blur */
     /*box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);*/
     box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
}

.feature-image2 img {
    display: block;
    width: 100%;
    height: auto;
    margin: 8px 0;
    /*border: 1px solid #000000;*/



    /* Solid grey border */
     /*border: 1px solid #808080;*/

     /* Grey shadow: 10px right, 10px down, 15px blur */
     /*box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);*/
     box-shadow: -4px 4px 5px rgba(0, 0, 0, 0.1);
}



/*FAQ*/

.section.faq h2 {
    margin-bottom: 28px;

    font-size: 32px;
    font-weight: 600;
}

.section.faq > div {
    padding-bottom: 22px;
    margin-bottom: 22px;

    border-bottom: 1px solid #e4e4e4;
}

.section.faq > div:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.section.faq h3 {
    margin: 0 0 10px 0;

    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

.section.faq p {
    margin: 8px 0;
    /*line-height: 1.7;*/
}

.section.faq div {
    font-size: 15px;
    line-height: 1.7;
}

/*end of FAQ*/

@media (max-width: 820px) {
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-text,
    .feature-image {
        width: 100%;
    }


    .hero {
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
