:root {
  color-scheme: light;
  --primary: #d62828;
  --primary-dark: #b22222;
  --bg: #fff6db;
  --bg-secondary: #ffe8ad;
  --text: #2c210c;
  --muted: #5c4a2a;
  --accent: #ffb703;
  --gradient: linear-gradient(135deg, #ffe066, #ffd046);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image: radial-gradient(circle at top, rgba(255, 255, 255, 0.5), transparent 45%);
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 208, 70, 0.95);
  border-bottom: 1px solid rgba(210, 135, 0, 0.25);
  z-index: 10;
  box-shadow: 0 8px 30px rgba(214, 40, 40, 0.15);
}
.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 1.25rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-group img {
  height: 48px;
  width: auto;
  aspect-ratio: auto;
}
.footer-grid img {
  height: 56px;
  width: auto;
  aspect-ratio: auto;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fffdf2;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(214, 40, 40, 0.3);
}
.hero,
.page-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 5rem 0 3rem;
  align-items: center;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero p,
.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.badge {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 40, 40, 0.3);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  color: var(--primary-dark);
}
.hero-card {
  background: var(--gradient);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(179, 95, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
section {
  padding: 3rem 0;
}
h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}
.grid-3,
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid rgba(214, 40, 40, 0.15);
  box-shadow: 0 25px 60px rgba(179, 95, 0, 0.25);
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.card p {
  color: var(--muted);
  margin: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff2bf;
  border-radius: 16px;
  overflow: hidden;
}
th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(214, 40, 40, 0.1);
}
th {
  background: rgba(214, 40, 40, 0.08);
  font-weight: 600;
}
tbody tr:last-child td {
  border-bottom: none;
}
.steps {
  counter-reset: step;
}
.steps li {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-left: 3rem;
  position: relative;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fffdf2;
}
.faq-item {
  border-top: 1px solid rgba(214, 40, 40, 0.15);
  padding: 1rem 0;
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(214, 40, 40, 0.15);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item p {
  margin-top: 0.5rem;
  color: var(--muted);
}
footer {
  background: #fdd756;
  border-top: 1px solid rgba(214, 40, 40, 0.2);
  padding: 2rem 0;
  font-size: 0.95rem;
  color: var(--text);
}
footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--primary);
}
.internal-link {
  color: #d62828;
  font-weight: 600;
}
.internal-link:hover {
  text-decoration: underline;
}
.sub-hero {
  background: linear-gradient(180deg, rgba(255, 225, 143, 0.9), rgba(255, 210, 90, 0.6));
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(214, 40, 40, 0.15);
}
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlight-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.highlight-list strong {
  color: var(--primary);
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-card span {
  color: var(--muted);
}
.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fffdf2;
  background: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(214, 40, 40, 0.3);
}
.page-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-nav a {
  font-weight: 600;
  color: var(--muted);
}
.page-nav a[aria-current="page"] {
  color: var(--primary);
}
@media (max-width: 640px) {
  .nav {
    flex-direction: column;
  }
  .cta {
    width: 100%;
    justify-content: center;
  }
  .hero,
  .page-hero {
    padding-top: 3.5rem;
  }
}

.mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fcd75d, #f6b21e);
  border-top: 1px solid rgba(214, 40, 40, 0.2);
  box-shadow: 0 -10px 25px rgba(44, 33, 12, 0.18);
  display: none;
  z-index: 99;
}
.mobile-nav a {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0.25rem 0.7rem;
  font-size: 0.7rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  justify-content: center;
}
.mobile-nav a span {
  font-size: 1.2rem;
}
.mobile-nav a[aria-current="page"] {
  color: var(--primary);
}
@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }
  .mobile-nav {
    display: flex;
  }
}

