.service {
    padding: 1em 5em; /* Reduced padding */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.services {
    /* background-color: #cecece; */
    border-radius: 20px;
    height: 25em; /* Adjusted height */
    width: 60em; /* Reduced width for larger screens */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 1.5em; /* Reduced padding */
    margin: 0 auto;
}

.logo_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo_image {
    width: 200px; /* Reduced logo size */
    height: 200px;
    border-radius: 150px;
}

.services h1 {
    font-family: "Roboto", Arial;
    font-size: 1.2rem; /* Reduced font size */
}

.services li {
    font-size: 1rem; /* Reduced font size */
    font-weight: normal;
}

/* Mobile styles */

@media (max-width: 768px) {
    .service {
        padding: 1em 2em; /* Reduced padding for smaller screens */
        height: auto;
    }

    .services {
        height: auto; /* Auto height for flexibility */
        width: 90%; /* Width adapts to screen size */
        flex-direction: column; /* Stack elements vertically */
        padding: 1em; /* Further reduced padding */
        justify-content: center; /* Center items */
    }

    .logo_image {
        width: 150px; /* Smaller logo for mobile */
        height: 150px;
        border-radius: 75px;
    }

    .services h1 {
        font-size: 1rem; /* Smaller font for mobile */
    }

    .services li {
        font-size: 0.75rem; /* Reduced font size for mobile */
    }
}

/* Extra small screens (max-width: 480px) */
@media (max-width: 480px) {
    .service {
        padding: 1em; /* Minimal padding for very small screens */
        height: auto;
    }

    .services {
        height: auto;
        width: 100%; /* Full width for small screens */
        padding: 0.5em; /* Further reduced padding */
    }

    .logo_image {
        width: 120px; /* Small logo size */
        height: 120px;
        border-radius: 60px;
    }

    .services h1 {
        font-size: 0.9rem; /* Smaller font size for very small screens */
    }

    .services li {
        font-size: 0.65rem; /* Even smaller font for small screens */
    }
}
