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

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

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

.service-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

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

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

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

.career-image {
  order: 1;
}

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

.career-text {
  order: 2;
}

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

.career-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* cta section */
.cta-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

/* testimonials section */
.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) {
  .service-content,
  .career-content {
    grid-template-columns: 100%;
    gap: 40px;
  }

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

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

  .career-text h2,
  .cta-section h2,
  .section-title {
    font-size: 28px;
  }

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

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

  .career-text h2,
  .cta-section h2,
  .section-title {
    font-size: 24px;
  }

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

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