.main {
  width: 90%;
  margin: 30px auto;
}

.main .hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.main .hero h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-size: 65px;

  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-align: center;
}

.main .hero p {
  margin-top: 40px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  color: #c7ccd5;
  max-width: 55vw;
  text-align: center;
}

.benefits {
  width: 80%;
  margin: auto;
  margin-top: 200px;
}

.benefits .benefits-headline {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}
.benefits .benefits-list li {
  list-style-type: none;
}
.benefits .benefits-list li h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-size: 28px;

  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-align: left;
  width: fit-content;
}

.benefits ul li p {
  margin-left: 40px;
}

.benefits .inner-list {
  margin-left: 30px;
}
.benefits .inner-list li {
  list-style-type: disc !important;
  margin: 5px auto;
}

.testimonials {
  width: 80%;
  margin: 80px auto;
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.logo-item {
  text-align: center;
  /* background: #fff; */
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: unset;
  text-decoration: none;
}
.logo-item img {
  width: 100px;

  height: auto;
  margin-bottom: 10px;
}
.logo-item h3 {
  margin: 0;
  font-size: 1.1em;
}
.logo-item p {
  margin: 5px 0 0;
  color: #555;
  font-size: 0.9em;
}
.services {
  width: 80%;
  margin: 80px auto;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.services .service-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px auto;
  align-items: center;
  justify-items: center;
}

.services .service-blocks .service-item h3 {
  font-size: 24px;
  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .service-item {
  width: 300px;
  background-color: #1e1e1e;
  padding: 10px 40px;
  border-radius: 50px;
  text-align: center;
}

.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta h2 {
  font-size: 36px;
  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
}

.cta .button {
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  margin-top: 20px;
  background-color: #1e1e1e;
  border: 1px solid white;
}

.contact-info {
  text-align: left;
  width: 40%;
}
.contact-info > p > span {
  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
