/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
}


header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.cta-button {
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}
main {
    margin-top: 1rem;
    padding: 0 2rem;
}

section {
    margin-bottom: 2rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}
form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    padding: 0.5rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input[type="submit"] {
    background-color: #3498db;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #2980b9;
}
.feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.feature:nth-child(even) .feature-image {
    order: -1;
}

.feature-text {
    flex-basis: 50%;
    padding: 1rem;
}

.feature-image {
    flex-basis: 50%;
    max-width: 100%;
}
/* Add some margin and responsive behavior for the images */
.feature-image {
    flex-basis: 50%;
    max-width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .feature-text {
        flex-basis: calc(50% - 2rem);
    }

    .feature-image {
        flex-basis: calc(50% - 2rem);
        margin-bottom: 0;
    }
}

.bg-blue {
    background-color: #3498db;
    color: #ffffff;
}

.bg-green {
    background-color: #27ae60;
    color: #ffffff;
}

.bg-white {
    background-color: #ffffff;
    color: #333333;
}

.bg-blue a,
.bg-green a {
    color: #ffffff;
}

.bg-white a {
    color: #ffffff;
}

.bg-blue a:hover,
.bg-green a:hover {
    text-decoration: underline;
}

/* Remove the margin from the main element */
main {
    margin: 0;
}

/* Update the header styles to align the CTA button to the top right */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Remove the margin from the sections */
section {
    margin: 0;
}

/* Remove the padding from the main element */
main {
    padding: 0;
}

/* Remove the margin from the sections */
section {
    margin: 0;
}

/* Update the header styles to align the CTA button to the top right */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Add a class for section content */
.section-content {
    padding: 1rem 2rem;
}

.bg-blue {
    background-color: #5da8e8;
    color: #ffffff;
}

.bg-green {
    background-color: #46c47c;
    color: #ffffff;
}

.bg-white {
    background-color: #f0f0f0;
    color: #333333;
}

.cta-button {
    padding: 0.5rem 1rem;
    background-color: #f1c40f;
    color: #000000;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d4ac0d;
}

.bg-blue {
    background-color: #0a3d62;
    color: #ffffff;
}

.bg-green {
    background-color: #1e8449;
    color: #ffffff;
}

.bg-white {
    background-color: #1c2833;
    color: #ffffff;
}

#form-submitted-message {
    display: none;
    text-align: center;
    padding: 2rem 0;
  }
  