/* Basic Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;
  }
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
} */

/* Full-width Banner */
.banner {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.banner h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.banner p {
    font-size: 1.5rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    margin-top: 40px;
}

/* Individual Service Blocks (no cards) */
.service-block {
    margin-bottom: 60px;
    padding: 30px 0;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Large Image for Each Service */
.service-img-large {
    width: 400px;
    height: auto;
    flex-shrink: 0;
}

/* Larger Text and Spacing */
.service-info h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.service-info ul {
    font-size: 1rem;
    list-style-type: disc;
    margin-left: 20px;
}

.service-info ul li {
    margin-bottom: 5px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        text-align: center;
    }

    .service-img-large {
        width: 300px;
        margin-bottom: 20px;
    }

    .banner h1 {
        font-size: 3rem;
    }

    .banner p {
        font-size: 1.2rem;
    }
}
