    body {
        font-family: 'Libre Franklin', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f5f5f7;
    }
    .header {
        background-color: #037dc9;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        flex-wrap: wrap;
    }
    .logo {
        flex: 1;
    }
    .nav {
        flex: 2;
        text-align: center;
    }
    .nav a {
        margin: 0 15px;
        color: white;
        text-decoration: none;
        font-weight: bold;
    }
    .social {
        flex: 1;
        text-align: right;
    }
    .social a {
        margin-left: 15px;
        color: white;
        text-decoration: none;
        font-size: 20px;
    }
    .main {
        padding: 20px;
    }
    .section {
        background-color: white;
        border-radius: 5px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .footer {
        background-color: #037dc9;
        color: white;
        text-align: center;
        padding: 10px;
    }
    .button {
        background-color: #037dc9;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    .button:hover {
        background-color: #025a97;
    }
    .services-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px; /* Add gap between images */
    }
    .service-item {
        flex: 0 1 calc(50% - 325px); /* Two items per row with reduced margin */
        box-sizing: border-box;
        position: relative; /* Allow absolute positioning for description */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .service-item figure {
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0;
        margin-inline-end: 0;
        unicode-bidi: isolate;
        position: relative; /* Allow absolute positioning for description */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .service-item img {
        width: 100%;
        height: 600px; /* Increase the height of the images */
        max-width: 500px; /* Decrease the width of the images */
        border-radius: 5px;
        object-fit: cover; /* Ensures the image covers the area without distortion */
    }
    .service-text {
        position: absolute;
        color: #000; /* Text color */
        background-color: rgba(245, 245, 247, 0.8); /* Background color */
        padding: 10px;
        font-size: 16px; /* Increased font size for service text */
        font-weight: bold;
        box-sizing: border-box;
        text-align: center;
        display: inline-block;
    }
    .service-text span {
        display: block;
    }
    .service-name {
        font-size: 24px; /* Increased font size for service names */
    }
    .service-description {
        font-size: 14px; /* Increased font size for service names */
    }
    /* Specific positions */
    .auto .service-text {
        top: 10px;
        right: 10px;
        text-align: right;
    }
    .residencial .service-text {
        bottom: 10px;
        left: 10px;
        text-align: left;
    }
    .vida .service-text {
        bottom: 10px;
        right: 10px;
        text-align: right;
    }
    .viagem .service-text {
        top: 10px;
        left: 10px;
        text-align: left;
    }
    .contact-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .contact-item {
        flex: 1;
        margin: 10px;
        padding: 20px;
        background-color: white;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }
    .contact-item h3 {
        text-align: center;
    }
    .contact-item p {
        display: flex;
        align-items: center;
    }
    .contact-item p i {
        margin-right: 10px;
        font-size: 20px;
    }
    .contact-item a {
        color: #000;
        text-decoration: none;
    }
    .solutions-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 20px;
    }
    .solutions-section img {
        max-width: 40%;
        border-radius: 5px;
    }
    .solutions-section div {
        max-width: 55%;
    }
    @media (max-width: 768px) {
        /* Ajuste a seção de contatos */
        .contact-container {
            flex-direction: column;
            align-items: center;
        }
        .contact-item {
            width: 100%;
            max-width: 400px;
        }
        .header, .nav, .social {
            flex: 1 100%;
            text-align: center;
        }
        .services-container {
            flex-direction: column;
        }
        .service-item {
            flex: 1 100%;
        }
        .solutions-section {
            flex-direction: column;
            text-align: center;
        }
        .solutions-section img, .solutions-section div {
            max-width: 100%;
        }
    }