* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

h1 {
  font-size: 24px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

.social-icons img {
  margin-left: 10px;
  height: 35px;
  width: 35px;
}

.hero {
  background: url("../img/hero.jpg") no-repeat center center/cover;
  color: #fff;
  height: 400px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  /* text-align: center; */
  text-align: left;
  flex-direction: column;
}

.hero-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-content {
  margin-left: 75px;
}

#collect {
  width: 500px;
}

.cta-button {
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.about {
  padding: 50px;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.image-grid .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  padding: 50px;
  text-align: center;
  background: #f8f8f8;
}

.testimonial-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.testimonial-item {
  width: 30%;
  text-align: center;
}

.testimonial-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
}
