/* Hero Section */

/* Feature Box */
.feature-box {
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #d2d6da;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 24px;
  color: #ff6000;
}

/* Step Number */
.step-number {
  width: 40px;
  height: 40px;
  background: #ff6000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Pricing Cards */
.pricing-card {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6000;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

.benefit-list li:last-child {
  border-bottom: none;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ff6000 0%, #0a58ca 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
  padding: 12px;
  border-radius: 8px;
}

.btn-submit {
  padding: 12px 30px;
  border-radius: 8px;
  background: #ff6000;
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #0a58ca;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .feature-box {
    margin-bottom: 20px;
  }

  .pricing-card {
    margin-bottom: 30px;
  }

  .testimonial-card {
    margin-bottom: 20px;
  }
}
