body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eff5f7;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 2000px;
    padding: 20px;
}

.item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 20px;
    width: 100%;
    max-width: 1110px;
}

.image-container {
    position: relative;
    width: 100%;
    margin-right: 40px;
    margin-left: 40px;

}

.image-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.shape {
    background-color: #10A3C2;
    width: 90%;
    height: 60%;
    position: absolute;
    border-radius: 20px;
    top: 60px;
    left: -22px;
    z-index: -1;
}

.service {
    margin-left: 90px;
}

.text-container {
    width: 100%;
    padding: 0 20px;
    text-align: left;
    max-width: 1060px;
}

h1 {
    color: #333;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.highlight {
    color: #10A3C2;
}

.texto {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

a {
    color: #10A3C2;
    text-decoration: none;
    font-weight: light;
    transition: color 0.3s ease;
}

a:hover {
    color: #08738a;
}

.link {
    font-weight: light;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #DDF056;
    color: black;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #b8c939;
    color: white;
}

@media screen and (max-width: 1170px) {
    .item {
        align-items: center;
    }

    .text-container {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .image-container {
        display: none;
    }
}