* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

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

.header h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
}

.header p {
  font-size: 1.1em;
  opacity: 0.95;
}

.main-content {
  padding: 50px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

@media (min-width: 1200px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.support-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 2em;
  margin-right: 15px;
}

.card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #333;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: #f8f9fa;
  padding: 18px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-answer.active {
  padding: 18px;
  max-height: 300px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #04aa6d;
  color: white;
  transform: translateY(-3px);
}

.contact-item h4 {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.tips-list {
  list-style: none;
}

.tips-list li {
  background: #f8f9fa;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #04aa6d;
  transition: all 0.3s ease;
}

.tips-list li:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.resource-list {
  list-style: none;
}

.resource-list li {
  background: #f8f9fa;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.resource-list li:hover {
  background: #04aa6d;
  color: white;
}

.resource-list li strong {
  display: block;
  margin-bottom: 5px;
}

.resource-list li small {
  opacity: 0.8;
}

.btn-back {
  margin-top: 30px;
  text-align: left;
}

.btn-back a {
  display: inline-block;
  color: #282a35;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-back a:hover {
  color: blue;
}
.home-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.home-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.home-btn i {
  transition: transform 0.3s;
}

.home-btn:hover i {
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2em;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

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