/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d1f24;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  transition: background 0.3s;
}

.nav-links a:hover {
  background-color: #444;
  border-radius: 4px;
}

.toggle-btn {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #181818, #2c3e50);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.btn {
  background-color: #e67e22;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.btn:hover {
  background-color: #e6a822;
  color: #ffffff;
}

/* About */
.about {
  padding: 4rem 2rem;
  background: #fff;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}

.about img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 1rem;
}

.download {
  padding: 4rem 2rem;
  background: #fff;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.download h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.download p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}

/* Footer */
.footer {
  background-color: #1d1f24;
  color: #fff;
  padding: 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer h3, .footer h4 {
  margin-bottom: 0.5rem;
}

.footer ul {
  list-style: none;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #1d1f24;
    position: absolute;
    right: 0;
    top: 60px;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .toggle-btn {
    display: block;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
 section {
      padding: 3rem 2rem;
      background: #fff;
      max-width: 800px;
      margin: 2rem auto;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    }
    h2 {
      margin-bottom: 1rem;
      text-align: center;
    }
    ul.faq-list {
      list-style: none;
      padding-left: 0;
    }
    ul.faq-list li {
      margin-bottom: 1rem;
      border-bottom: 1px solid #ddd;
      padding-bottom: 0.8rem;
    }
    ul.faq-list li h3 {
      margin-bottom: 0.3rem;
      font-weight: 600;
      color: #1d1f24;
    }
    ul.faq-list li p {
      color: #555;
    }
    .promo-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .promo-card {
      background: #f5f5f5;
      padding: 1rem;
      border-radius: 6px;
      box-shadow: 0 1px 4px rgb(0 0 0 / 0.1);
      flex: 1 1 250px;
      text-align: center;
    }
    .promo-card h3 {
      color: #e67e22;
      margin-bottom: 0.6rem;
    }
    .register-login {
      max-width: 350px;
      margin: auto;
      display: flex;
      justify-content: center;
      gap: 1rem;
    }
    .register-login a {
      flex: 1;
      padding: 0.75rem 0;
      background: #e67e22;
      color: white;
      text-align: center;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
      transition: background 0.3s;
    }
    .register-login a:hover {
      background: #cf6c14;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background: #1d1f24;
        position: absolute;
        right: 0;
        top: 60px;
        width: 100%;
      }
      .nav-links.active {
        display: flex;
      }
      .toggle-btn {
        display: block;
      }
      .promo-cards {
        flex-direction: column;
      }
      .register-login {
        flex-direction: column;
      }
    }
    html {
      scroll-behavior: smooth;
    }