.hero {
  padding: 150px 0 80px;
  background: #ffffff;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e8f5e9;
}

/* services overview section */
.services-overview {
  padding: 80px 0;
  background: #e8f5e9;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e8f5e9;
}

.services-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.services-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.services-list {
  margin: 25px 0;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #1a1a1a;
}

.services-list i {
  color: #4caf50;
  font-size: 18px;
}

/* solutions section */
.solutions {
  padding: 80px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.solution-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon i {
  font-size: 36px;
  color: #4caf50;
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.solution-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}
.testimonials-section {
  padding: 80px 0;
  background: #e8f5e9;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #4caf50;
  opacity: 0.3;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  min-width: 60px;
}

.testimonial-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 14px;
  color: #666;
}

.testimonial-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* responsive */
@media (max-width: 1024px) {
  .hero-content,
  .services-content {
    grid-template-columns: 100%;
    gap: 40px;
  }

  .solutions-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 360px);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .section-header h2,
  .section-title,
  .services-text h2 {
    font-size: 28px;
  }

  .solutions-grid,
  .testimonials-grid {
    grid-template-columns: 100%;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .section-header h2,
  .section-title,
  .services-text h2 {
    font-size: 24px;
  }

  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 320px) {
  .hero-text h1 {
    font-size: 24px;
  }
}
