html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
    'Oxygen', 'Ubuntu', sans-serif;
  background: #f0fdfa;
  color: #0f172a;
  line-height: 1.6;
  width: 100%;
  position: relative;
}

nav {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #d1fae5;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 60px;
}

.nav-brand {
  font-weight: 700;
  font-size: 18px;
  color: #0f766e;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #0f766e;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 12px;
  }

  .nav-brand-full {
    display: none;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 13px;
  }
}

header {
  background: linear-gradient(135deg, #134e4a 0%, #064e3b 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 32px;
}

main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px 60px;
}

.section {
  background: white;
  padding: 40px;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .section {
    padding: 24px 20px;
  }

  .faq-item {
    padding: 24px 20px;
  }

  main {
    padding: 0 16px 60px;
  }
}

.section h2 {
  margin: 0 0 16px 0;
  color: #0f766e;
  font-size: 24px;
}

.section p {
  margin: 0 0 12px 0;
  color: #475569;
}

ul {
  margin: 12px 0;
  padding-left: 24px;
  color: #475569;
}

li {
  margin-bottom: 8px;
}

.faq-item {
  background: white;
  padding: 32px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin: 0 0 12px 0;
  color: #0f766e;
  font-size: 20px;
}

.faq-item p {
  margin: 0;
  color: #475569;
}

.pricing-table {
  margin: 20px 0;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  overflow: hidden;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #d1fae5;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:nth-child(even) {
  background: #f0fdfa;
}

.pricing-row strong {
  color: #0f766e;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: #475569;
  background: white;
  border-top: 1px solid #d1fae5;
}

footer a {
  color: #0f766e;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}
