
nav {
  background: #020617;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #38BDF8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #E5E7EB;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #38BDF8;
}

/* HELP SECTION */
.help-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

.help-section h1 {
  text-align: center;
  font-size: 40px;
  color: #38BDF8;
}

.subtitle {
  text-align: center;
  color: #CBD5F5;
  margin: 10px 0 40px;
}

/* FAQ */
.faq h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #38BDF8;
}

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

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

/* SUPPORT FORM */
.support-form {
  margin-top: 50px;
  background: #020617;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.support-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #38BDF8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #CBD5F5;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  background: #38BDF8;
  color: #020617;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background: #0EA5E9;
}

select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: none;
  border-radius: 8px;
  background: #0F172A;
  color: white;
  font-size: 14px;
  outline: none;
  appearance: none;
  cursor: pointer;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

select option[disabled] {
  color: #AAA;
}

select option {
  color: #ffffff;
}

input:focus,
select:focus {
  outline: 2px solid rgba(255, 107, 43, 0.6);
}

.form-group {
  margin-bottom: 18px;
}

select {
  color-scheme: dark;
}

select option {
  background-color: #0F172A;
  color: #FFFFFF;
}


@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }

  .help-section h1 {
    font-size: 32px;
  }
}
