.faq-section {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  padding: 80px 20px;
}

.faq-section .container {
  max-width: 1100px;
  margin: auto;
}

.faq-section h1 {
  font-size: 36px;
  color: #f26522;
  text-align: center;
  margin-bottom: 40px;
}

.faq-section .intro {
  text-align: center;
  color: #555;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq {
  background: #fff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq h2 {
  color: #222;
  font-size: 22px;
  margin-bottom: 10px;
}

.faq p {
  font-size: 16px;
  color: #444;
}

.back-home .download-btn {
  background: #f26522;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.back-home .download-btn:hover {
  background: #f09819;
}

@media (max-width: 768px) {
  .faq-section h1 {
    font-size: 28px;
  }

  .faq h2 {
    font-size: 18px;
  }

  .faq p {
    font-size: 15px;
  }
}

.footer {
  background: #fff;
  padding: 70px 20px 40px;
  margin-top: 80px;
  border-top: 1px solid #eee;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.05);
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 26px;
  font-weight: bold;
  color: #f26522;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-brand .logo:hover {
  color: #f09819;
}

.footer-text {
  margin-top: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Social Icons */
.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.social-link {
  font-size: 18px;
  color: #555;
  background: #f2f2f2;
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #f09819;
  color: #fff;
  transform: scale(1.1);
}
.footer-list-title {
  font-weight: 600;
  font-size: 16px;
  color: #222;
  margin-bottom: 12px;
}

.footer-link {
  display: inline-block;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background-color: #f09819;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.footer-link:hover {
  color: #f26522;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #888;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-list {
    margin-bottom: 25px;
  }

  .social-list {
    justify-content: center;
  }
}
