@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #050814, #071c2f);
  color: white;
}

/* Navbar */
header {
  background: #050814;
  padding: 15px 8%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
}

.logo img {
  width: 40px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #ffd23f;
}

.login-btn {
  background: #ffd23f;
  padding: 6px 16px;
  border-radius: 20px;
  color: #000 !important;
  font-weight: 600;
}

/* Hero */
.help-hero {
  text-align: center;
  padding: 70px 10%;
  background: linear-gradient(135deg, #1e3caa, #1b55d1);
  border-radius: 0 0 40px 40px;
}

.help-hero h1 {
  font-size: 36px;
  color: #ffd23f;
}

.help-hero p {
  margin-top: 10px;
  font-size: 16px;
}

/* Quick Help */
.quick-help {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 50px 10%;
}

.help-card {
  background: #0b1730;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #4fc3ff55;
}

.help-card h3 {
  color: #4fc3ff;
  margin-bottom: 8px;
}

/* FAQ */
.faq-section {
  padding: 50px 10%;
  max-width: 1000px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  color: #ffd23f;
  margin-bottom: 30px;
}

.faq-item {
  background: #0b1730;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.faq-item h4 {
  color: #4fc3ff;
  margin-bottom: 6px;
}

/* Contact */
.contact-support {
  text-align: center;
  padding: 50px 10%;
  background: #050814;
  margin-top: 30px;
}

.contact-support h2 {
  color: #ffd23f;
  margin-bottom: 10px;
}

.contact-support h3 {
  color: #4fc3ff;
  margin-top: 8px;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 15px;
  background: #02050d;
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  nav a {
    margin-left: 15px;
    font-size: 14px;
  }
  .help-hero h1 {
    font-size: 28px;
  }
}
