/* General layout for the main content area */
.main-content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  font-family: "Poppins", sans-serif; /* Assuming you use a font like this */
  color: #333;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color); /* Use your theme color */
}

.page-header .subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Free Trial Section */
.trial-section {
  background-color: #e8f4fd; /* A light, inviting blue */
  border-left: 5px solid var(--primary-color);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  border-radius: 8px;
  text-align: center;
}

.trial-section h2 {
  margin-top: 0;
  color: var(--primary-color);
}

/* Pricing Card Styling */
.pricing-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.plan-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  max-width: 450px;
  width: 100%;
  text-align: center;
  border-top: 5px solid var(--accent-color); /* Use an accent color */
}

.plan-header h3 {
  font-size: 1.8rem;
  margin: 0;
}

.plan-header p {
  color: #777;
  margin-bottom: 1.5rem;
}

.plan-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-period {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
}

.price-disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.plan-card .btn-cta {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Feature List Styling */
.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0 auto;
  max-width: 320px;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-list li::before {
  content: "✓";
  color: #28a745; /* A success green */
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* FAQ Section Styling */
.faq-section {
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
}

.faq-item a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Animations (from your existing code) */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}
.animate-scale-up {
  animation: scaleUp 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
