/* Reset some default styles */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
}

header {
  background-color: #f2f2f2;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
}

.logo-footer img {
  height: 60px;
}

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

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

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

.banner {
  background-image: url('https://www.weltonfamily.net/logos/solid_red.png');
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.centered-footer {
  text-align: center;
  padding: 20px;
  background-color: #f2f2f2;
}

.featured-services {
  padding: 40px;
  display: flex;
  justify-content: space-around;
}

.service-card {
  text-align: left;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
}

.service-card h2 {
  text-align: center;
}

.service-card p {
  margin-top: 10px;
}

.service-card img {
  display: block;
  margin: 0 auto;
  max-width: 100px;
  margin-bottom: 10px;
}

.service-card ul {
  margin-top: 10px; /* Add margin between heading and list */
  margin-bottom: 10px; /* Add margin between list and previous heading */
  padding-left: 20px; /* Remove default list padding */
  list-style: disc;
}

.customer-feedback-header {
  text-align: center;
  margin-top: 20px;
}

.customer-feedback-cards {
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.feedback-card {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
  max-width: 300px;
}

.feedback-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.business-stats-banner {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.stats-content {
  max-width: 800px;
  margin: 0 auto;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.stat {
  flex: 1;
  padding: 20px;
  margin: 10px;
}

.stat h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Contact Details */
.contact-details {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px;
}

/* Contact Section */
.contact-section {
  flex-basis: calc(33.33% - 20px);
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
}

.contact-section p {
  margin-top: 10px;
}

/* Map Section */
.map-section {
  text-align: center;
  padding: 40px;
}

.map-section h2 {
  margin-bottom: 20px;
}

/* About Cards */
.about-cards {
  display: flex;
  padding: 40px;
  font-family: 'Roboto', sans-serif;
}

.about-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 0 10px; /* Add margin between cards */
}

.about-card p {
  margin-top: 10px;
}

.about-image {
  text-align: center;
  margin-bottom: 10px;
}

.about-image img {
  max-height: 200px; /* Adjust image height as needed */
}

.about-content {
  flex: 1;
}

/* Partners Banner */
.partners-banner {
  text-align: center;
  padding: 40px 0;
  background-color: #f2f2f2;
}

.partner-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-list li {
  margin: 10px;
}

.partner-list img {
  max-height: 80px; /* Adjust the maximum height of the logos */
}

/* Become a Partner Section */
.become-partner {
  text-align: center;
  padding: 40px 0;
  font-family: 'Roboto', sans-serif;
}
