

.intro-background {
    align-content: center;
    height: 600px;
    padding: 0px 40px ;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top:40px;
}

.services-intro h1 {
    font-size: 3em;
    margin: 0px;
    padding: 0px;
}

.services-intro p {
    font-size: 1em;
    padding: 0px;
    margin: 0px;
}

.enclose {
    background-color: rgba(0, 0, 0, 0.616);
    border-radius: 15px; /* Rounded corners */
    max-width: 30%;
    padding: 20px;
}

.services-intro {
    color: rgb(255, 255, 255);
    text-shadow: 0px 0px 20px rgb(0, 0, 0);
    margin: 0px auto;
    padding: 0px 20px;
}

.services-container {
    color: lightblue;
    text-shadow: 0px 0px 6px rgb(0, 0, 0);
    max-width: 1000px;
    margin: 2vw auto;
    padding: 20px;
    border-radius: 15px; /* Rounded corners */
}

.services-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: bolder;
}

.service {
    margin-bottom: 40px;
}

.service-wrapper {
    display: flex;
    align-items: flex-start;
}

    .service-wrapper.left {
        flex-direction: row;
    }

    .service-wrapper.right {
        flex-direction: row-reverse;
    }

    .service-wrapper.left .service-info {
        text-align: left;
    }

    .service-wrapper.right .service-info {
        text-align: right;
    }

    .service-wrapper.right .service-description {
        margin-left: auto;
    }

.service-clipart {
    width: 80px;
    height: 80px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 20px;
    flex-shrink: 0;
}
/* Placeholder remains as a simple color block for now */
.clipart-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ccc;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-description {
    font-size: 1em;
    max-width: 600px;
    line-height: 1.6;
}

    .service-description ul {
        list-style: none;
        margin-top: 10px;
        padding: 0px;
    }

.service-wrapper.right .service-description ul li {
    position: relative;
    padding-right: 20px; /* space to display bullet on the end */
    margin-right: 20px;
    margin-bottom: 5px;
}

    .service-wrapper.right .service-description ul li::after {
        content: "\2022";
        position: absolute;
        right: 0;
        top: 0;
        color: lightblue;
        font-weight: bolder;
    }

.service-wrapper.left .service-description ul li {
    position: relative;
    padding-left: 20px; /* space to display bullet on the end */
    margin-left: 20px;
    margin-bottom: 5px;
}

    .service-wrapper.left .service-description ul li::before {
        content: "\2022";
        position: absolute;
        left: 0;
        top: 0;
        color: lightblue;
        font-weight: bolder;
    }

.bold {
    font-weight: bold;
}

@media (max-width: 1536px) {
    .intro-background {
       height :500px ;
       padding:  0px 30px;
    }
    .enclose {
        max-width: 40%;
    }
}

@media (max-width: 1280px) {
    .enclose {
        max-width: 50%;
    }
    .intro-background {
        height: 400px;
    }
}

@media (max-width: 950px) {
    .enclose {
        max-width: 60%;
    }

    .intro-background {
        background-position: center;
        margin-top:20px;
    }
}

@media (max-width: 800px) {
    .enclose {
        max-width: 70%;

    }
    .intro-background {
        height: 300px;
    }
}

@media (max-width: 700px) {
    .enclose {
        max-width: 80%;
    }
}

@media (max-width: 630px) {

    .enclose {
        max-width: 100%;
    }
}


@media (max-width: 565px) {

    .service-clipart {
        display: none;
    }

    .service-name {
        font-size: 1.2em;
    }

    .service-description, .services-intro p {
        font-size: .8em;
    }

    .services-title, .services-intro h1 {
        font-size: 2.5em;
    }

    .intro-background {
        height: 200px;
        padding:20px;
    }
   
}


@media (max-width: 497px) {


    .service-name {
        font-size: 1em;
    }

    .service-description, .services-intro p {
        font-size: .7em;
    }

    .services-title, .services-intro h1 {
        font-size: 1.5em;
    }
}

@media (max-width: 350px) {


    .service-name {
        font-size: .8em;
    }

    .service-description, .services-intro p {
        font-size: .6em;
    }

    .services-title {
        font-size: 1.3em;
    }

    .services-intro h1 {
        font-size: 1.1em;
    }

    .service-info {
        background-color: rgba(0, 0, 0, 0.616);
        border-radius: 15px; /* Rounded corners */
        padding: 10px;
    }

    .services-container {
        padding: 0px;
        margin: 0px;
    }

    .service {
        margin-bottom: 20px;
    }
}

/* FAQ Section Styling */
.faq-container {
    max-width: 1000px;
    margin: 70px auto;
    padding: 20px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.05);
    color: lightblue;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}

.faq-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #3366cc;
}

.faq-item {
    margin-bottom: 20px;
}

    .faq-item p {
        margin: 5px 0;
        line-height: 1.6;
    }

        .faq-item p:first-child {
            font-weight: bold;
        }

