body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#top-bar {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

#logo {
    font-size: 24px;
    font-weight: bold;
    float: left;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: right;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

#top-bar:after {
    content: "";
    display: table;
    clear: both;
}

#hero {
    height: 600px;
    background-image: url('images/hero-image.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #0056b3;
}

#services {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

#services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.service-grid {
    display: flex;
    justify-content: space-around;
}

.service-item {
    max-width: 300px;
}

.service-item img {
    max-width: 300px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #666;
}

#about {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

#testimonials {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

#testimonials h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: flex;
    justify-content: space-around;
}

.testimonial-item {
    max-width: 300px;
    font-style: italic;
}

.testimonial-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-item h3 {
    font-size: 18px;
    color: #333;
}

#contact {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

footer {
    padding: 20px 0;
    background-color: #333;
    color: white;
    text-align: center;
}

footer p {
    margin: 0;
}

.social-media {
    list-style-type: none;
    margin: 10px 0 0;
    padding: 0;
}

.social-media li {
    display: inline;
    margin: 0 10px;
}

.social-media li a {
    color: white;
    text-decoration: none;
}

.social-media li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    #logo {
        float: none;
        text-align: center;
        margin-bottom: 10px;
    }

    nav ul {
        float: none;
        text-align: center;
    }

    nav ul li {
        display: block;
        margin-left: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 400px;
        padding: 20px;
    }

    #hero h1 {
        font-size: 36px;
    }

    #hero p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .service-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    #about p {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    form {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .social-media {
        text-align: center;
    }

    .social-media li {
        display: block;
        margin-bottom: 10px;
    }
}


main {
    padding: 20px;
}
