/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Intro Section */
.intro {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.intro h1 {
    margin: 0;
    font-size: 2.5em;
}

.intro p {
    margin: 10px 0 0;
}

/* Services List Section */
.services-list {
    background: #fff;
    padding: 20px 0;
}

.service-item {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.8em;
}

.service-item p {
    color: #666;
    font-size: 1em;
    margin: 0;
}

/* Contact Us Section */
.contact-us {
    background: #e9e9e9;
    padding: 20px 0;
    text-align: center;
}

.contact-us h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 10px;
}

.contact-us p {
    color: #666;
    font-size: 1em;
    margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .intro h1 {
        font-size: 2em;
    }

    .service-item h2 {
        font-size: 1.5em;
    }
}
