/* services.css */

.services-intro {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #e8f4fa;
}

.services-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-section {
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center content horizontally */
    text-align: center;
}

.service-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
     color: #0251a0;
}

.service-section img {
    width: 80px; /* Adjust as needed */
    height: 80px;
    margin-bottom: 1rem;
    order: -1; /* Place image before the heading */
}

.service-section p {
  font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-section ul {
    list-style: disc;
    margin-left: 20px;
    text-align: left; /* Align list items to the left */
    margin-bottom: 1rem;
}
.service-section ul li{
   margin-bottom: .5rem;
}


@media (max-width: 768px) {
    .service-section {
        flex-direction: column;
        align-items: center;
    }
}