/* ========= Support Page ========= */
body {
  margin: 0;
  padding: 0;
  background-color: #121212;
  font-family: 'Segoe UI', sans-serif;
  color: #eee;
}

.support-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  background-color: #1a1a1a;
  line-height: 1.8;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.support-section h2 {
  font-size: 2.4rem;
  color: #00bcd4;
  margin-bottom: 20px;
  text-align: center;
}

.support-section p {
  font-size: 1.05rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
}

.support-info h3 {
  color: #ff9800;
  margin-top: 30px;
  font-size: 1.3rem;
}

.support-info p {
  color: #ccc;
  margin-bottom: 10px;
  font-size: 1rem;
}

.support-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.support-section input,
.support-section textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.support-section input::placeholder,
.support-section textarea::placeholder {
  color: #aaa;
}

.support-section textarea {
  resize: vertical;
}

.support-section button {
  background: #00bcd4;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.support-section button:hover {
  background: #0097a7;
}

/* ========== Responsive Design ========== */
@media (max-width: 600px) {
  .support-section {
    padding: 40px 15px;
  }

  .support-section h2 {
    font-size: 2rem;
  }

  .support-info h3 {
    font-size: 1.15rem;
  }
}
