/* Base Layout */
body {
  background: #fafafa;
}
.product {
  transition: all 0.25s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.product img {
  transition: opacity 0.25s ease;
}

.product:hover img {
  opacity: 0.92;
}
.product .cta-blue {
  transition: background 0.25s ease, transform 0.25s ease;
}

.product:hover .cta-blue {
  background: #155a96;
  transform: translateY(-2px);
}
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.6;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 20px;
  margin: 0;
}

.nav li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  padding: 20px;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.cta-blue {
  background: #1e73be;
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
}

/* Category Grid */
.category-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.category-grid li a {
  display: block;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  color: #222;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product img {
  width: 100%;
  border-radius: 6px;
}

.product h3 {
  margin: 10px 0 6px;
}

.benefit {
  font-size: 14px;
  color: #555;
}

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.legal-page h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.legal-page h2 {
  font-size: 22px;
  margin-top: 35px;
  color: #1e73be;
}

.legal-page p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* Footer */
footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 60px 20px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  justify-content: center;
  gap: 35px;
}

.footer-links li a {
  text-decoration: none;
  color: #1e73be;
  font-weight: 500;
  font-size: 15px;
}

.footer-links li a:hover {
  text-decoration: underline;
}

footer .disclosure {
  font-size: 15px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

footer .copyright {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.product {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  position: relative;
}

.product .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1e73be;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
}