.index-services-overview {
    padding: 40px 20px;
    text-align: center; /* Center align the main title */
    background-color: #e9ecef; /* Light grey background */
    border-radius: 5px; /* Rounded corners */
}

.index-services-overview h2 {
    margin-bottom: 20px;
    font-size: 2em; /* Larger font size */
    font-weight: bold; /* Bold text */
}

.index-services-overview-structure {
    display: inline-block; /* Keeps items in a row on larger screens */
    width: 30%; /* Default width for desktop */
    padding: 20px;
    margin: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s; /* For hover effect */
}

.index-services-overview-structure:hover {
    transform: translateY(-2px); /* Lift effect on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.index-services-overview-structure h3 {
    margin-top: 0;
    font-size: 1.5em; /* Larger service name font size */
    color: #343a40; /* Darker text color */
}

.index-services-overview-structure p {
    text-align: justify; /* Justify the text in paragraphs */
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .index-services-overview-structure {
        display: block; /* Stack items vertically */
        width: 90%; /* Full width for each service item */
        margin: 10px auto; /* Center with auto margins */
    }

    .index-services-overview h2 {
        font-size: 1.8em; /* Adjust title font size for smaller screens */
    }

    .index-services-overview-structure h3 {
        font-size: 1.3em; /* Adjust service name font size */
    }

    .index-services-overview-structure p {
        text-align: justify; /* Justify text on mobile too */
    }
}