@import url(./main.css);

body {
  background-color: #fff;
}



header {
  background-image: url(../images/head-img.avif) !important;
  background-size: cover !important;
  background-size: 100% !important;
}

.section-about {
  display: flex;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  gap: 30px;
}

.img-about {
  flex: 1;
}

.img-about img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.contant-about {
  padding: 0%;
  flex: 1;
  /* margin-left: 30px; */

}

.contant-about h1 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.contant-about p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.contant-about hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.text {
  font-style: italic;
  color: #666;
}

.testimonial {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.testimonial img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.author-info span {
  font-weight: bold;
  font-size: 16px;
  display: block;
}

.author-info p {
  font-size: 14px;
  color: #777;
  margin: 2px 0 0;
}

@media (max-width: 767px) {
  .section-about {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .testimonial {
    justify-content: center;
  }
}

.container {

  margin: auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #ecf4d3;
}

.container h1 {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.container .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.value-box {
  border-radius: 10px;
  padding: 20px;
  flex: 0 0 32%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.icon {
  background: black;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  min-width: 50px;
}

.value-box h3 {
  margin: 0 10%;
}

.value-box p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 767px) {
  .value-box {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }


}

.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  gap: 30px;
}

.text-3 {
  flex: 1;
}

.text-3 h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.text-3 p {
  font-size: 16px;
  color: #555;
  display: flex;
  margin-bottom: 25px;
  line-height: 1.6;
}


.list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list-item {
  flex: 0 0 45%;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.list-item i {
  background: green;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.image {
  flex: 1;
}

.image img {
  width: 100%;
  border-radius: 5px;
}


@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
  }

  .list {
    flex-direction: column;
  }

  .list-item {
    flex: 0 0 100%;
  }

  .section3 {
    text-align: left;
  }
}