/* Lifetime Plan Section */
.lifetime-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 20px;
  text-align: left;
}

.lifetime-plan .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
}

/* Left Side Text */
.lifetime-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.lifetime-content h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #2c3e50;
}

.lifetime-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

/* Price Card */
.lifetime-price-box {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  background: #fff;
  padding: 50px 40px;
  border-radius: 15px;
  color: #222;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
}

/* Price Card Hover Effect */
.lifetime-price-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 3px solid #4ca1af;
}

.lifetime-price {
  font-size: 3.5em;
  font-weight: bold;
  color: #4ca1af;
}

.lifetime-price-box .currency {
  font-size: 0.7em;
  vertical-align: super;
}

.btn-purchase {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  background: #4ca1af;
  color: #fff;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-purchase:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.lifetime-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  text-align: left;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 2em;
  margin-bottom: 15px;
  color: #4ca1af;
}

.feature-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.feature-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* CTA Section */
.pricing-cta {
  background: linear-gradient(135deg, #4ca1af, #2c3e50);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.pricing-cta h2 {
  font-size: 2.4em;
  margin-bottom: 15px;
  font-weight: bold;
}

.pricing-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  padding: 14px 35px;
  background: #fff;
  color: #2c3e50;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
