/* ===== General Styles ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #6c63ff, #00c6ff);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== FAQ Content ===== */
.faq-content {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq-intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.faq-intro p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* ===== FAQ Cards ===== */
.faq-container h2 {
  font-size: 1.8rem;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #444;
  border-bottom: 2px solid #6c63ff;
  padding-bottom: 5px;
}

.faq-card {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.faq-card:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background-color: #6c63ff;
  color: #fff;
  padding: 20px;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question i {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background-color: #f7f7f7;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 1rem;
  color: #555;
}



/* ===== Responsive Design ===== */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .faq-intro h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .faq-container h2 {
    font-size: 1.4rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}
