body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.top-bar {
    height: 80px;
    background-color: #154581;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.logo {
    height: 24px;
	margin: 2px 0 -2px 0
}

.container {
    max-width: 1172px;
    margin: 14px auto 14px auto;
    padding: 2px 15px 0 15px;
    border: 1px solid #efefef;
    border-radius: 2px;
    background-color: #fefefe;
}

h1 {
    margin-top: 10px;
    margin-bottom: 16px;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 10px;
}

ul li {
    margin: 6px 0;
}

a {
    color: #154581;
    line-height: 1.5em;
    text-decoration: none;
}

a:visited {
    color: purple;
}

.sales-pitch a {
    color: #ffffff;
}

.sales-pitch {
    margin-top: 24px;
    padding: 10px;
    border-left: 4px solid red;
    color: #ffffff;
    background-color: #154581;
}

.intro-container {
    margin-top: -1px;
    background-color: #20569a;
}

.intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

.content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 2px;
}

.intro p {
    margin-bottom: 32px;
}

.intro a {
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 2px;
    padding: 12px 10px;
}

.content a {
    color: #ffffff;
    text-decoration: none;
}

.content a:hover {
    background-color: #31609b;
}

.text {
    flex: 1;
    color: #ffffff;
}

/* ========================= */
/* FORM STYLES – FULL WIDTH */
/* ========================= */

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;
    box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
    margin-top: 6px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #154581;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    margin-top: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: #154581;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0f3566;
}

/* ========================= */
/* Mobile styles */
/* ========================= */

@media (max-width: 768px) {
    .intro-container {
        padding-bottom: 10px;
    }

    .intro {
        max-width: 100%;
    }

    .intro img {
        margin-bottom: -20px;
    }

    .intro p {
        margin-bottom: 26px;
    }

    .intro a {
        color: #ffffff;
        text-decoration: none;
        border: 2px solid #ffffff;
        border-radius: 2px;
        padding: 12px 10px;
    }

    .container {
        max-width: 86%;
    }

    .content {
        flex-direction: column;
        align-items: flex-start;
    }

    .content img {
        max-width: 100%;
    }
}
