* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
  font-family: "Heebo", sans-serif;
  background: #fafafa;
  color: #2d3748;
  line-height: 1.6;
}

.hero-section {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.05)" width="50" height="50"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  color: white;
}
.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-text p {
  font-size: 22px;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-image {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #48bb78 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-image-placeholder svg {
  width: 80%;
  height: 80%;
  opacity: 0.9;
}
.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 8px;
}

.cta-button {
  display: inline-block;
  background: #48bb78;
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}
.cta-button:hover {
  background: #38a169;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.5);
}

.section {
  width: 100%;
  padding: 80px 20px;
  background: white;
}
.section:nth-child(even) {
  background: #f7fafc;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #2d3748;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.why-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2d3748;
  font-weight: 600;
}
.why-card p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #48bb78 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #4299e1 0%, #48bb78 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content {
  padding: 30px;
}
.service-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2d3748;
  font-weight: 600;
}
.service-content p {
  color: #4a5568;
  font-size: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #48bb78 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-info h4 {
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 5px;
}
.testimonial-info p {
  font-size: 14px;
  color: #718096;
}

.testimonial-text {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.about-section {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-image-img {
  height: 65%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
}

.about-content {
  flex: 1;
}
.about-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #2d3748;
  font-weight: 700;
}
.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.final-cta {
  width: 100%;
  background: linear-gradient(135deg, #38b2ac 0%, #4299e1 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle fill="rgba(255,255,255,0.05)" cx="50" cy="50" r="40"/></svg>');
  opacity: 0.3;
}
.final-cta h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-secondary {
  display: inline-block;
  background: white;
  color: #38b2ac;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
.cta-button-secondary:hover {
  background: #f7fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.contact-section {
  width: 100%;
  padding: 80px 20px;
  background: white;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}
.form-group:last-of-type {
  margin-bottom: 30px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2d3748;
  font-weight: 500;
  font-size: 16px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Heebo", sans-serif;
  transition: all 0.3s ease;
  background: white;
}
.form-group input:hover,
.form-group textarea:hover {
  border-color: #cbd5e0;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #fc8181;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.submit-button {
  width: 100%;
  background: #48bb78;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
  font-family: "Heebo", sans-serif;
}
.submit-button:hover {
  background: #38a169;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.5);
}
.submit-button:active {
  transform: translateY(0);
}
.submit-button:disabled {
  background: #a0aec0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text p {
    font-size: 18px;
  }
  .section-title {
    font-size: 32px;
  }
  .about-section {
    flex-direction: column;
  }
  .about-image {
    height: 300px;
  }
  .final-cta h2 {
    font-size: 28px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .contact-section {
    padding: 60px 20px;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    font-size: 15px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 16px;
    padding: 10px 14px;
  }
  .submit-button {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
