body {
    margin: 0;
    font-family: "Inter", sans-serif;
}

.information-service-tierra {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px;
    padding-left: 20px;
    padding-right: 20px;
}

.information-service-tierra h1 {
    font-size: 4.2em;
    margin-bottom: 40px;
    color: #3E9984;
    text-align: center;
    font-weight: 500;
}

.information-service-tierra .button-contact {
    background-color: #3E9984;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.information-service-tierra .button-contact:hover {
    background-color: #000000;
    color: dimgray;
}

.information-description {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-group {
    margin-bottom: 50px;
    width: 100%;
    max-width: calc(3 * 341px + 2 * 30px);
    text-align: left;
}

.section-group h3:first-of-type {
    font-size: 2.5em;
    color: #195043;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 640;
    text-align: left;
    width: 100%;
}

.section-group h3:nth-of-type(2) {
    font-size: 1.8em;
    color: #3E9984;
    margin-bottom: 60px;
    font-weight: 640;
    text-align: left;
    width: 100%;
}

.service-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding-bottom: 50px;
    width: 100%;
}

.service-card {
    width: 341px;
    height: 311px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #3E9984;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    flex-shrink: 0;
}

.service-card img {
    width: 148px;
    height: 131.48px;
    object-fit: contain;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.service-card h4 {
    font-size: 1.3em;
    color: #5E6865;
    margin: 0;
    line-height: 1.2;
    padding: 0 5px;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .section-group {
        max-width: calc(2 * 341px + 1 * 30px);
    }
}

@media (max-width: 768px) {
    .information-service-tierra {
        padding: 50px 15px;
    }

    .information-service-tierra h1 {
        font-size: 3em;
    }

    .section-group {
        max-width: 341px;
    }

    .section-group h3:first-of-type {
        font-size: 2em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .section-group h3:nth-of-type(2) {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .service-card {
        width: 100%;
        height: auto;
        min-height: 280px;
    }

    .service-card img {
        width: 120px;
        height: auto;
    }

    .service-card h4 {
        font-size: 1em;
        line-height: 1.3;
    }

    .service-card-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .information-service-tierra {
        padding: 30px 10px;
    }

    .information-service-tierra h1 {
        font-size: 2.5em;
    }

    .section-group {
        max-width: 300px;
    }

    .section-group h3:nth-of-type(2) {
        max-width: 300px;
    }

    .service-card {
        min-height: 250px;
    }
}