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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f7fb;
  color: #1f2933;
  line-height: 1.6;
}

a {
  color: #1166cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-sub {
  font-size: 0.8rem;
  color: #6b7280;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}

.nav-links a:hover {
  background-color: #eef2ff;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.main {
  max-width: 1120px;
  margin: 1.5rem auto 3rem auto;
  padding: 0 1rem;
}

.hero {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.2);
  margin-bottom: 0.75rem;
}

.hero-tag span {
  font-size: 1rem;
}

.hero-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: #fef3c7;
  color: #1f2937;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #fde68a;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(209, 213, 219, 0.85);
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(15, 23, 42, 0.3);
}

.hero-aside {
  background-color: rgba(15, 23, 42, 0.32);
  border-radius: 1.25rem;
  padding: 1.4rem 1.3rem;
  backdrop-filter: blur(4px);
}

.hero-aside h2 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.hero-aside ul {
  list-style: none;
  font-size: 0.85rem;
}

.hero-aside li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.hero-aside li span {
  font-size: 1rem;
  line-height: 1.2;
}

.section {
  margin-top: 2.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 520px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.1rem 1rem;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.10);
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.88rem;
  color: #4b5563;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.6rem;
}

.chip {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background-color: #eff6ff;
  color: #1d4ed8;
}

.layout-two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

.list {
  padding-left: 1.2rem;
  font-size: 0.92rem;
}

.list li {
  margin-bottom: 0.45rem;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background-color: #e0f2fe;
  color: #0369a1;
  margin-bottom: 0.5rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.table th, .table td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.6rem;
  text-align: left;
}

.table th {
  background-color: #f3f4f6;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: #4b5563;
}

.footer {
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 1.8rem 1rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.85rem;
}

.footer-inner p {
  margin-bottom: 0.4rem;
}

.footer-inner .disclaimer {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

.page-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.page-intro {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.2rem;
  max-width: 720px;
}

.breadcrumbs {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.6rem;
}

.breadcrumbs a {
  color: #6b7280;
}

.highlight-box {
  background-color: #eff6ff;
  border-radius: 0.9rem;
  padding: 0.9rem 0.9rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.8rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.85rem;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #e5e7eb;
}

.testimonial strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-form {
  background-color: #ffffff;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  max-width: 640px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.5rem 0.55rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.contact-form button {
  margin-top: 0.4rem;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .layout-two-col {
    grid-template-columns: 1fr;
  }
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 56px;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
    max-width: 260px;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.2s ease-out;
  }
  .nav-toggle-label {
    display: block;
  }
  .nav-toggle:checked + .nav-toggle-label + .nav-links {
    transform: translateX(0);
  }
  .hero {
    padding: 1.8rem 1.4rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
}
