* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header styles */
.support-header {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #4e54c8, #8a64d0);
  color: white;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.support-header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Navigation styles */
.support-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.support-nav li {
  margin: 5px 15px;
}

.support-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.support-nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Content sections */
.support-content {
  display: grid;
  grid-gap: 30px;
}

.faq-section,
.contact-form,
.policy-section {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-section h2,
.contact-form h2,
.policy-section h2 {
  color: #4e54c8;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* FAQ styles */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
}

.faq-answer {
  margin-top: 10px;
  color: #666;
  display: none;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact form styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #4e54c8, #8a64d0);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Contact details */
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.contact-card {
  background: #f9f9ff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  color: #4e54c8;
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 5px;
}

/* Policy section styles */
.policy-content h3 {
  color: #4e54c8;
  margin: 20px 0 10px;
}

.policy-content p {
  margin-bottom: 15px;
}

/* Footer styles */
.support-footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  color: #777;
  border-top: 1px solid #eee;
}

/* Responsive styles */
@media (max-width: 768px) {
  .support-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .support-nav li {
    margin: 5px 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

/* Home Button Styles */
.home-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4e89ae 0%, #43658b 100%);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.home-btn:hover {
  background: linear-gradient(135deg, #43658b 0%, #3a5a78 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.home-btn-container {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
