body {
	background: #fff !important;
}
/* Background wrapper to center align */
.services-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #f4f4f4; /* Light background */
}

/* Ensuring the container is centered and matches Service Section width */
.container {
    width: 80%;
    max-width: 1200px;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    margin: 0 auto;
}
ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Centered title */
h1 {
    text-align: center;
    color: #333;
    font-size: 2.5rem; /* Matching heading size */
}

/* Individual section styling */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #e6f7ff; /* Light blue for sections */
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Alternating section layout */
.reverse {
    flex-direction: row-reverse;
    background-color: #fff2e6; /* Light orange background */
}

/* Image styling */
.image {
    flex: 1;
    text-align: center;
}

.image img {
    width: 150px; /* Increased image size */
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* Text content */
.text {
    flex: 1;
    padding: 20px;
}

h2 {
    color: #333;
    font-size: 1.5rem; /* Match Service Section card title size */
    margin-bottom: 15px; /* Increased space below h2 */
}

/* Bullet points styling */
ul {
    list-style-type: disc;
    
}

ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

/* Responsive: Stack items in small screens */
@media (max-width: 768px) {
    .container {
        width: 90%; /* Adjust for smaller screens */
    }
    
    .section {
        flex-direction: column;
        text-align: center;
    }

    .reverse {
        flex-direction: column; /* Remove alternate row-reverse */
    }

    .image img {
        max-width: 100%;
    }
}
