/*------------------------------------
  BASIC PAGE SETUP SECTION
-------------------------------------- */
html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f4f7fa 0%, #e8f4f8 100%);
}


/*------------------------------
    INTRO SECTION
--------------------------------*/
.intro-section {
    text-align: center;
    margin: 0 auto;
    margin-top: 10rem;
    max-width: 1100px;
}

.intro-header {
    letter-spacing: 0.5px;
    font-size: 3rem;
    color: #2c3e50;
    font-weight: normal;
    font-family: 'Georgia', serif;
    font-weight: 600;
    font-variant: small-caps;
    margin-bottom: 2rem;
}

.intro-txt {
    text-align: center;
    font-style: italic;
    font-size: 1.75rem;
    line-height: 1.6;
}

/*------------------------------------
  MAIN FAQ SECTION
-------------------------------------- */
.faq-section {
  padding-top: 5rem;
  min-height: 90vh;
}

/*------------------------------------
  FAQ CARDS SECTION
-------------------------------------- */
.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 10rem;
}
.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e8e8e8;
}
.faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
/* FAQ card icons */
.faq-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
/* FAQ card titles */
.faq-title {
  font-size: 1.38rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: bold;
}
/* FAQ answers */
.faq-answer {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
}