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

body {
  font-family: Arial, sans-serif;
  background: #f6f6f6;
  color: #111;
}


.navbar {
  background: #131921;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 20px;
  color: white;
}

.logo {
  width: 100px;
}

.search-box {
  flex: 1;
  margin: 0 20px;
  padding: 10px;
  border-radius: 4px;
  border: none;
  max-width: 600px;
}

.nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* Main Content */
.main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.subtext {
  color: #555;
  margin: 10px 0 30px;
}

.quick-help {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.help-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.help-card img {
  width: 100%;
  margin-bottom: 15px;
}

.help-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.help-card p {
  font-size: 14px;
  color: #555;
}

/* Topics Section */
.help-topics h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.topic {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.topic h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.topic ul {
  list-style: none;
}

.topic ul li {
  font-size: 14px;
  color: #007185;
  margin-bottom: 6px;
  cursor: pointer;
}

/* Contact Section */
.contact-box {
  background: white;
  padding: 30px;
  margin-top: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.contact-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ffa41c;
  color: #111;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
.footer {
  margin-top: 60px;
  padding: 20px;
  background: #232f3e;
  color: white;
  text-align: center;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .search-box {
    width: 100%;
    margin: 10px 0;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    margin-top: 10px;
  }

  .main-content {
    padding: 20px 10px;
  }
}
