body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.services-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #333;
}

.service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

.service .description {
  flex: 1;
  margin-right: 20px;
}

.service .description h3 {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 10px;
}

.service .description p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.service .image {
  flex: 0.5;
  max-width: 300px;
}

.service .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 200px; /* Keep images of different sizes consistent */
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
  }

  .service .description {
    margin: 0 0 20px 0;
    text-align: center;
  }

  .service .image {
    max-width: 100%;
  }
}


header {
background: #f8f8f8;
text-align: center;
}

header img {
max-width: 100%;
height: auto;
}

.contact-details {
background-color: #67b3b2;
color: white;
padding: 10px 0;
}

.contact-details p {
margin: 0;
}

nav ul {
list-style-type: none;
padding: 0;
background-color: #67b3b2;
text-align: center;
}

nav ul li {
display: inline;
margin: 0 10px;
}

nav ul li a {
text-decoration: none;
color: white;
}

main {
padding: 20px;
}

h1, h2 {
color: #67b3b2;
}

.full-width-banner {
width: 100%;
height: auto;
margin-bottom: 20px;
}

.team-members {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.team-member {
flex: 1 1 18%;
text-align: center;
margin: 10px 0;
}

.group-image {
width: 100%;
height: auto;
margin-bottom: 20px;

}

#home {
text-align: center;
padding: 50px 0;
}
#about {
text-align: center;
padding: 50px 0;
}
#services {
text-align: center;
padding: 50px 0;
}


#team {
text-align: center;
padding: 50px 0;
}
#contact {
text-align: center;
padding: 50px 0;
}

#gallery {
text-align: center;
padding: 50px 0;
}

#testimonials {
  text-align: center;
  padding: 50px 0;
}

#services ul li {
margin: 0 10px;
	text-align: left;
}

.gallery-thumbnails {
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.gallery-item {
margin: 10px;
	flex: 0 0 calc(33.33% - 20px);
}

.gallery-item img {
max-width: 100%;
}

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

footer a {
color: #67b3b2;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}

.footer-logo {
    width: 85px; /* Adjust the width as needed */
    height: 85px; /* Adjust the height as needed */
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px; /* Space between the logo and the text */
}

.map iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border: none;
	margin: 20px;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

blockquote {
  font-style: italic;
  margin: 0;
}

.author {
  margin-top: 10px;
  font-weight: bold;
}


@media (max-width: 768px) {
nav ul li {
display: block;
margin: 5px 0;
}

header, main, footer {
padding: 10px;
}

.team-members {
flex-direction: column;
}

.team-member {
flex: 1 1 100%;
}

.group-image {
width: 100%;
height: auto;
margin-bottom: 20px;

}
.gallery-item {
flex: 0 0 calc(33.33% - 20px);
}
}
