/* General Styles */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Section */

header {
  background-color: #f2f2f2;
  text-align: center;
  padding: 50px 0;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #666;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Introduction Section */

#introduction {
  background-color: #fff;
  padding: 40px;
  text-align: center;
}

/* Services Section */

#services {
  background-color: #f2f2f2;
  padding: 40px;
}

.service {
  margin-bottom: 40px;
  text-align: center;
}

.service img {
  max-width: 200px;
  margin-bottom: 20px;
}

h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Call-to-Action Section */

#call-to-action {
  background-color: #007bff;
  color: #fff;
  padding: 40px;
  text-align: center;
}

#call-to-action h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

#call-to-action p {
  margin-bottom: 40px;
}

/* Footer Section */

footer {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
}

footer ul li {
  display: inline;
  margin-right: 10px;
}

/* Responsive Styles */

@media (max-width: 767px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  .service img {
    max-width: 150px;
  }

  #call-to-action p {
    margin-bottom: 20px;
  }
}
