body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-image: url("bg.png");
  color: white;
}


html {
  font-size: 70%;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0px;
  right: 0;
  height: 60px;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
}

.navbar-left {
  font-size: 1.3rem;
  font-weight: bold;
}

.navbar-center a {
  margin: 0 15px;
  font-weight: 500;
  color: white;
  text-decoration: none;
}

.navbar-right .btn {
  margin-left: 10px;
  padding: 10px 18px;
  background: white;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-right .btn:hover {
  background: #ddd;
}

.faq-section {
  max-width: 800px;
  margin: 100px auto 50px;
  padding: 20px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.faq-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(90deg, rgb(89, 144, 255), rgb(106, 255, 230));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #4dd0e1;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.whatsapp-rectangle {
  position: fixed;
  right: 0;
  bottom: 100px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 10px 0 0 10px;
  font-weight: bold;
  font-size: 1rem;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.whatsapp-rectangle:hover {
  background: #1ebe5b;
}

@media (max-width: 768px) {
  .faq-section {
    margin: 90px 20px;
  }

  .navbar {
    padding: 0 20px;
    height: 50px;
  }

  .navbar-left {
    font-size: 1rem;
    display:none;
  }

  .navbar-center a {
    margin: 10 20px;
    font-size: 0.9rem;
    
  }
  .navbar-right {
    display:none;
  }

  .whatsapp-rectangle {
    display: none;
  }

  .faq-section h1 {
    font-size: 1.8rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}