/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Common Container */
.container-2 {
  width: 90%;
  max-width: 700px;
  margin-top: -100px;
  align-items: center;
}

/* CTA Section */
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

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

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

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

.hero-title,
.hero-description {
  margin: 0 80px 20px;
}

.hero-title {
  font-size: 28px;
}

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

/* Features Section */
.features-sec-1 {
  background-color: #F8F9FA;
  padding: 60px 0;
  margin-top: 50px;
  text-align: center;
}

.features-sec-1 .section-title-sec-1 {
  font-size: 36px;
  margin-bottom: 40px;
}

.feature-cards-sec-1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Reusable Card Styles */
.feature-card-sec-1,
.pricing-card-sec-1,
.pricing-card-sec-2,
.testimonial-card {
  background-color: #fff;
  padding: 40px;
  width: 30%;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card-sec-1:hover,
.pricing-card-sec-1:hover,
.pricing-card-sec-2:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-card-sec-1 .icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #f0a500;
}

.feature-card-sec-1 h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-card-sec-1 p {
  font-size: 16px;
  color: #666;
}

/* Pricing Plans Section */
.pricing-sec-1,
.pricing-sec-2 {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
}

.pricing-sec-2 {
  background-color: #f7f7f7;
  margin-top: -40px;
  padding-top: 40px;
}

.pricing-sec-1 .section-title,
.pricing-sec-2 .section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.pricing-row-sec-1,
.pricing-row-sec-2 {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pricing-row-sec-2 {
  margin: 30px 20%;
}

.plan-title-sec-1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.price-sec-1 {
  font-size: 36px;
  color: #f39c12;
  font-weight: 700;
  margin-bottom: 20px;
}

.plan-features-sec-1 {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-features-sec-1 li {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
  background-color: #fff;
  padding: 60px;
  text-align: center;
  margin-top: 40px;
}

.testimonials .section-title {
  font-size: 36px;
  margin-bottom: 40px;
  padding-top: 25px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Testimonial Cards */
.testimonial-card {
  padding: 30px;
}

.testimonial-card p {
  font-size: 18px;
  color: #555;
}

.testimonial-card h5 {
  font-size: 16px;
  color: #f39c12;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 16px;
}

/* Additional CTA Section */
.cta {
  margin-top: 150px;
}
