body {
    background-color: #F3F7F4;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    padding: 50px;
}

.mock-container {
    margin-top: 50px;
    height: 600px;
    background-image: url("./assets/3d-app.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.logo {
    width: 230px;
    height: 70px;
    background-image: url('./assets/logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.casa-logo {
    width: 230px;
    height: 70px;
    background-image: url('./assets/casadesante.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-footer {
    width: 130px;
    height: 60px;
    background-image: url('./assets/logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.headline {
    display: flex;
    justify-content: center;
    padding: 50px;
}

.headline-text {
    max-width: 800px;
    text-align: center;
    line-height: 110%;
    font-size: 80px;
    font-weight: bold;
    color: #094713;
}

p {
    color: #838B84;
    font-size: 17px;
    line-height: 150%;
    max-width: 550px;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.arrow {
    width: 15px;
    height: 66px;
    background-image: url('./assets/arrow.svg');
    background-position: bottom;
    margin: 70px 0;
}

.green-container {
    background: #5FAC6B;
    padding: 50px 0px;
}

.white-container {
    background: transparent;
    padding: 50px 0px;
}

.left-feature-container {
    margin: auto;
    display: grid;
    align-items: center;
    grid-template-columns: 40% 70%;
    max-width: 1000px;
}

.right-feature-container {
    margin: auto;
    display: grid;
    align-items: center;
    grid-template-columns: 70% 40%;
    max-width: 1000px;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-text {
    font-weight: 400;
    font-size: 17px;
    color: #C8F9D0;
    padding: 20px 0;
}

.new-text {
    font-weight: 700;
    font-size: 17px;
    background-color: #FFD43D;
    padding: 5px 15px;
    border-radius: 30px;
}

.feature-text {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: #FFFFFF;
    max-width: 500px;
}

.description {
    font-size: 17px;
    line-height: 26px;
    color: #E7FFEA;
    max-width: 500px;
    padding: 20px 0;
}

.cta-container {
    padding: 20px 0;
}

.cta-text {
    margin: auto;
    max-width: 590px;
    text-align: center;
    line-height: 110%;
    font-size: 40px;
    font-weight: bold;
    color: #094713;
}

.buttons-container {
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn:hover {
    opacity: 0.8;
    transition: 0.2s ease-in;
    cursor: pointer;
}

.footer {
    display: flex;
    padding: 30px 100px;
    justify-content: space-between;
    align-items: center;
}

a {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

a:hover {
    color: #5FAC6B;
}

input {
    width: 300px;
    font-family: inherit;
    padding: 15px;
    outline: none;
    border: none;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
    border-radius: 7px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #BABABA;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #BABABA;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #BABABA;
}

.button {    
    width: 300px;
    background: #5FAC6B;
    border-radius: 7px;
    color: white;
    font-family: inherit;
    padding: 15px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    -webkit-appearance: none;
}

.button:hover {
    background: #69C978;
    transition: 0.1s linear;
}

.terms-container {
    margin: auto;
    max-width: 600px;
    padding: 0 15px;
}

@media only screen and (max-width: 600px) {
    .mock-container {
        background-size: cover;
        height: 300px;
    }
    .logo-container {
        padding: 40px 0;
    }
    .logo {
        width: 200px;
    }
    .headline {
        padding: 20px;
    }
    .headline-text {
        font-size: 45px;
    }
    p {
        font-size: 14px;
        padding: 0 15px;
    }
    .arrow {
        height: 50px;
        margin: 30px 0;
    }
    .green-container, .white-container {
        padding: 20px 20px;
    }
    .left-feature-container {
        align-items: center;
        justify-items: center;
        grid-template-columns: 1fr;
    }
    .right-feature-container {
        align-items: center;
        justify-items: center;
        grid-template-columns: 1fr;
    }
    .step-text {
        font-size: 14px;
    }
    .feature-text {
        font-size: 25px;
    }
    .description {
        font-size: 16px;
    }
    .rtext {
        grid-row: 1;
    }
    .rimage {
        grid-row: 2;
    }
    .ltext {
        grid-row: 1;
    }
    .limage {
        grid-row: 2;
    }
    .cta-container {
        padding: 30px 20px;
    }
    .cta-text {
        font-size: 30px;
    }
    .btn {
        width: 140px;
    }
    .buttons-container {
        flex-direction: column;
        align-items: center;
    }
    .footer {
        flex-direction: column;
        padding: 0;
    }

}
