:root {
  --primary: #ff6600;
  --primary-dark: #e65500;
  --text-light: #fff;
  --text-dark: #222;
  --bg-light: #fff3e6;
}

body {
  background: linear-gradient(to bottom right, #ff6600, #ffbb80);
  color: var(--text-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-menu {
  background: var(--primary-dark);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: relative;
}

.logo-img {
  height: 40px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline-block;
}

.nav-btn {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: var(--primary);
}

.nav-btn.active {
  background-color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.coming-soon-banner {
  background-color: var(--primary-dark);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 1rem;
}

.intro-container {
  text-align: center;
  padding: 60px 20px;
  flex: 1;
}

.intro-container h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.intro-container p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.soon-note {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #fff;
}

.button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 600px;
}

.intro-btn {
  background-color: white;
  color: var(--primary-dark);
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.intro-btn:hover {
  background-color: var(--bg-light);
}

.intro-btn.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.features {
  background: white;
  color: var(--text-dark);
  padding: 50px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

.feature {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature img {
  width: 50px;
  margin-bottom: 15px;
}

.feature h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.terms-content, .privacy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  color: var(--text-dark);
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.terms-content h2, .privacy-content h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 20px;
}

.terms-content p, .privacy-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer {
  background: #ff6600;
  color: white;
  text-align: center;
  padding: 15px;
}

.contact {
  background: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
  padding: 50px 20px;
}

.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--primary-dark);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

  .nav-btn {
    display: block;
    text-align: center;
  }

  .intro-container h1 {
    font-size: 2rem;
  }

  .intro-container p {
    font-size: 1rem;
  }

  .button-container {
    flex-direction: column;
    gap: 15px;
  }

  .intro-btn {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }

  .features h2 {
    font-size: 1.5rem;
  }

  .contact h2 {
    font-size: 1.4rem;
  }
}