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

body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #333;
}

.container {
  width: 90%;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: #333;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 22px;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #f39c12;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #e67e22;
}

/* Features Section */
.features {
  background-color: #f7f7f7;
  padding: 60px 0;
  text-align: center;
}

.features .section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-card {
  flex: 1 1 300px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #333;
  text-align: center;
  transition: transform 0.3s ease;
}

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

/* Pricing Plans Section */
.pricing {
  background-color: #fff;
  padding: 80px 0;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.pricing-card {
  flex: 1 1 300px;
  background-color: #f7f7f7;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Testimonials Section */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .pricing-card,
  .feature-card,
  .testimonial-card {
    width: 100%;
  }

  .cta-btn {
    width: 100%;
  }
}
ul {
    list-style: none;
    padding-left: 0; /*himanshu this side from Jetking*/
}
