.site-info {
    width: 100%;
    height: auto;
    background-color: var(--wp--preset--color--blue-normal);
    color: white;
    margin-top: 2rem;

    .container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        text-align: start;
    
        @media screen and (min-width: 768px) {
            grid-template-columns: repeat(4, 1fr);
        }
    }
}


.first-row {
    margin-top: 1rem;

    .main-image {
        width: 75%;
        height: auto;
    }

    .social-elements {
        display: flex;
        flex-direction: row;
        align-items: start;
        list-style: none;
        gap: 25px;

        li {
            i {
                font-size: 24px;
            }
        }
    }

    @media screen and (min-width: 768px) {
        width: 90%;
    }
}

h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.servicios-menu {
    list-style: none;
    a {
        text-decoration: none;
        color: white;
    }
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    li {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.25rem;
        font-size: 16px;

        i {
            margin-right: 10px;
        }

        span {
            line-height: 18px;
        }
        p {
            line-height: 18px;
        }

        a {
            text-decoration: none;
            color: white;
            font-weight: 500;
        }
    }
}