body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}

.form-wrapper {
    position: relative;
    margin: auto;
    padding: 50px 20px;
    width: 90%;
    max-width: 1100px;
}

.form-wrapper * {
    box-sizing: border-box;
}

.header-section {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.header-section h1 {
    color: #da241e;
    margin: 5px 0;
    font: 600 20px 'Montserrat';
    text-transform: uppercase
}

.header-section h2 {
    margin: 5px 0;
    font: 300 16px 'Montserrat';
}

.about-section {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #da241e;
    font: 400 16px 'Raleway', sans-serif;
}

.about-section-left {
    flex: 1;
    color: #fff
}

.about-section-right {
    flex: 1;
    text-align: right
}

.about-section-right img {
    display: inline-block;
    max-height: 200px;
    border-left: 10px solid #101010;
}

.about-section p {
    margin: 0;
    line-height: 20px;
}

.about-section .tick {
    font-size: 24px;
    color: #eee;
    vertical-align: sub;
}

.content-section {
    padding: 20px;
    background-color: #f4f4f4;
}

.form-double {
    display: flex;
    gap: 10px;
}

.form-double>div {
    flex: 1;
}

.form-double>.form-double-1 {
    flex: 1
}

.form-double>.form-double-3 {
    flex: 3
}

.form-double,
.form-single {
    margin-top: 15px;
}

.form-single>.orange-button {
    width: 100%;
}

.form-line {
    padding-top: 30px;
    font: 600 14px 'Raleway', sans-serif;
    text-align: center;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
}

.input-wrapper .label {
    height: 22px;
    text-align: left;
    font: 600 14px 'Raleway', sans-serif;
    color: #222;
}

input.normal-text,
select.normal-text {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 8px;
    border: 1px solid #cccccc;
    width: 100%;
    height: 42px;
    font: 400 16px 'Raleway', sans-serif;
    background-color: #ffffff;
    color: #444;
}

textarea.normal-text {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px;
    border: 1px solid #cccccc;
    width: 100%;
    font: 300 16px 'Raleway', sans-serif;
    background-color: #ffffff;
    resize: none;
    height: 80px;
    color: #444;
}

.red-button {
    display: inline-block;
    cursor: pointer;
    font: 400 18px 'Montserrat', sans-serif;
    letter-spacing: 1px;
    padding: 15px 50px;
    background-color: #da241e;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

.red-button:hover {
    background-color: #c91e18;
}

a,
a:visited {
    color: #da241e;
    text-decoration: underline;
}

a:hover {
    color: #c91e18;
}

@media screen and (max-width: 1024px) {
    .form-wrapper {
        padding: 0px;
        width: 100%;
        max-width: 1100px;
    }

    .header-section {
        flex-direction: column;
    }

    .header-title {
        text-align: center;
    }

    .about-section {
        flex-direction: column;
        padding: 18px 20px;
        gap: 40px;
    }

    .about-section-right img {
        max-height: initial;
        width: 100%;
        border-left: none;
    }

    .input-wrapper {
        margin-top: 10px;
    }

    .form-double {
        display: block;
    }
}
