/* Global styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #333;
}

button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Header styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0; /* remove left and right padding */
}

nav ul {
  display: flex;
  list-style: none;
}

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

nav ul li:first-child {
  margin-left: 0;
}

nav ul li a {
  font-weight: bold;
}

/* Services section styles */
#services {
  background-color: #fff;
  padding: 25px 40px;
}

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

#services p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 24px; /* 1.5 x font size */
}

#services ul {
  margin-left: 10px;
}

#services li {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 24px; /* 1.5 x font size */
}

/* About section styles */
#about {
  background-color: #f5f5f5;
  padding: 25px 40px;
}

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

#about p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 24px; /* 1.5 x font size */
}

#about ul {
  margin-left: 1px;
}

#about li {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 24px; /* 1.5 x font size */
}

/* Testimonials section styles */
#testimonials {
  background-color: #fff;
  padding: 25px 50px;
  text-align: center;
}

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

.testimonial-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 0 30%;
  max-width: 400px;
  margin: 20px;
}

.testimonial img {
  border-radius: 50%;
  margin-bottom: 20px;
  max-width: 100%;
}

.testimonial p {
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial .name {
  font-weight: bold;
  font-style: italic;
  color: #333;
}

/* Contact section styles */
#contact {
  background-color: #f5f5f5;
  padding: 25px 40px;
  text-align: center;
  border: 1px solid #ccc;
}

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

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

#contact label {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact textarea {
  height: 150px;
}

#contact button[type="submit"] {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  #contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  #contact form {
    flex-basis: 50%;
    margin: 0;
  }
}
/* FAQ section styles */
#faq {
  background-color: #fff;
  padding: 25px 40px;
}

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

.faq-item {
  margin-bottom: 40px;
}

.faq-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 24px; /* 1.5 x font size */
}

/* Hero section styles */
#hero {
  background-color: #fff5e6;
  background-image: url('hero-background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  text-align: center;
  margin-top: 60px;
}

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

#hero h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
}

#hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 26px; /* 1.5 x font size */
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.button:hover {
  background-color: #666;
}
/* Footer styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
}

@media screen and (max-width: 480px) {
  footer {
    font-size: 14px;
  }
}