/*--------------------------------------------------------------
  1. Reset and ensure html/body use the full viewport
--------------------------------------------------------------*/
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
  2. Apply full-page pastel gradient on body
--------------------------------------------------------------*/
body {
  /* This gradient now spans the entire viewport (top to bottom). */
  font-family: 'WF Visual Sans', sans-serif;
  color: #333;
}

/*--------------------------------------------------------------
  3. PAGE‐CONTAINER
     Keeps the content centered but does NOT override the background
--------------------------------------------------------------*/
.page-container {
  display: flex;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
  flex-direction: column;
  min-height: 100vh; /* so footer sticks to bottom if content is short */
}

/*--------------------------------------------------------------
  4. FAQ SECTION (CENTERED, MAX‐WIDTH, FOR CONTENT CARDS)
--------------------------------------------------------------*/
.faq-section {
  /* Make sure this section sits on top of the gradient */
  max-width: 800px;
  margin: 0 auto;         /* horizontally center */
  padding: 60px 20px;     /* vertical and horizontal padding */
  box-sizing: border-box;
  flex: 1;                /* allow main content to expand, pushing footer down */
}

/*--------------------------------------------------------------
  5. FAQ TITLE
--------------------------------------------------------------*/
.faq-title {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

/*--------------------------------------------------------------
  6. INDIVIDUAL FAQ ITEMS (WHITE CARDS)
--------------------------------------------------------------*/
.faq-item {
  background-color: #ffffff;      /* solid white card */
  border-radius: 0;               /* no rounding */
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Question heading inside each card */
.faq-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

/* Answer text */
.faq-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Reusable class for paragraphs in cards */
.card-text {
  margin: 0;
}

/*--------------------------------------------------------------
  7. OPTIONAL: STYLES FOR PLAN CARDS (IF YOU USE A “Plans” PAGE)
--------------------------------------------------------------*/

/* Container for multiple cards in a row */
.card-deck {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.card {
  background-color: #fff;
  width: 360px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-header {
  background-color: #f0f0f0;
  color: #333;
  padding: 20px;
  font-size: 20px;
  text-align: center;
}

/* Specific plan header colors */
.free-card .card-header {
  background-color: #FFF9C4;
}
.plus-card .card-header {
  background-color: #FFD54F;
}
.pro-card .card-header {
  background-color: #FFB300;
}

.card-body {
  padding: 20px;
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.card-price {
  font-size: 75px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.card-price span {
  font-size: 16px;
  color: #777;
  display: block;
  margin-top: 5px;
}

.card-price .per-month {
  font-size: 18px;
  color: #777;
  vertical-align: top;
  margin-left: 2px;
}

.billing-info {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.card-footer {
  padding: 20px;
  text-align: center;
}

.btn {
  background-color: #007BFF;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  font-family: 'WF Visual Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.btn.disabled {
  background-color: #007BFF;
  cursor: not-allowed;
}
