body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.section {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    text-align: end;
}

.section img {
    width: 350px;
    /* height: 150px; */
    margin-right: 20px;
    border-radius: 10px;
}

.section:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: start;
}

.section:nth-child(odd) img {
    margin-right: 0;
    margin-left: 20px;
}

.section-content {
    max-width: 70%;
}

h3 {
    color: #333;
}

p {
    color: #555;
    font-size: 18px;
}

.cta {
    text-align: center;
    margin: 20px 0 50px;
}

.cta a {
    width: fit-content;
    padding: 0 30px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-weight: var(--p-bold);
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b3);
    align-items: center;
    display: grid;
    margin-left: auto;
    margin-right: auto;
}

.cta a:hover {
    transform: scale(1.03);
}

input[type=submit] {
    height: 50px;
}

@media (max-width: 991px) {
    .container {
        width: 90%;
    }

    .section {
        flex-direction: column;
        text-align: center;
    }

    .section img {
        margin: 0 0 20px 0;
    }

    .section-content {
        max-width: 100%;
    }

    .section:nth-child(odd) {
        flex-direction: column;
    }

    .section:nth-child(odd) img {
        margin: 0 0 20px 0;
    }

    p {
        font-size: 17px;
        text-align: start;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    p {
        font-size: 15px;
        text-align: start;
        margin-bottom: 10px;
    }

    h3 {
        margin-bottom: 10px;
    }
}