@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Source Sans 3', sans-serif; background: #fffbf5; color: #2c1810; line-height: 1.75; }
a { color: #c2410c; text-decoration: none; }
a:hover { color: #9a3412; text-decoration: underline; }

nav { background: #fff; border-bottom: 2px solid #fed7aa; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 60px; position: sticky; top: 0; z-index: 10; box-shadow: 0 1px 4px rgba(194,65,12,0.06); }
.brand { font-family: 'Lora', serif; font-size: 18px; font-weight: 700; color: #2c1810; }
.brand a { color: #2c1810 !important; }
nav .dl { background: #c2410c; color: #fff; font-weight: 600; font-size: 13px; padding: 8px 20px; border-radius: 100px; }
nav .dl:hover { background: #9a3412; text-decoration: none; }

.hero { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); border-bottom: 1px solid #fed7aa; padding: 64px 32px 52px; }
.hero-inner { max-width: 820px; margin: 0 auto; }
.badge { display: inline-block; font-size: 11px; font-weight: 700; color: #c2410c; letter-spacing: 1.5px; text-transform: uppercase; background: #fff; border: 1px solid #fdba74; padding: 4px 14px; border-radius: 100px; margin-bottom: 24px; }
h1 { font-family: 'Lora', serif; font-size: clamp(28px, 5vw, 52px); font-weight: 700; color: #1c0a04; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.3px; }
h1 em { color: #c2410c; font-style: italic; }
.lead { font-size: 18px; color: #78350f; max-width: 580px; line-height: 1.65; }

section { max-width: 820px; margin: 0 auto; padding: 52px 32px; }
h2 { font-family: 'Lora', serif; font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #1c0a04; margin: 44px 0 14px; }
h2:first-child { margin-top: 0; }
h3 { font-size: 15px; font-weight: 700; color: #9a3412; margin: 24px 0 8px; text-transform: uppercase; letter-spacing: 0.5px; }
p { color: #44200e; margin-bottom: 16px; font-size: 17px; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

.card { background: #fff; border: 1px solid #fed7aa; border-left: 4px solid #c2410c; padding: 22px 24px; margin: 20px 0; border-radius: 0 8px 8px 0; }
.card h3 { margin-top: 0; }
.card p { font-size: 16px; margin-bottom: 8px; }

.steps { counter-reset: step; list-style: none; margin: 20px 0; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid #ffedd5; align-items: start; }
.steps li:last-child { border-bottom: none; }
.steps li::before { content: counter(step); font-family: 'Lora', serif; font-size: 22px; font-weight: 700; color: #c2410c; line-height: 1.2; }
.steps li p { margin: 0; font-size: 16px; }
.steps li strong { display: block; color: #2c1810; font-size: 15px; margin-bottom: 4px; }

table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #fed7aa; }
th { background: #fff7ed; color: #9a3412; font-weight: 700; text-align: left; padding: 12px 16px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid #fed7aa; }
td { padding: 11px 16px; border-bottom: 1px solid #fffbf5; color: #44200e; }
tr:last-child td { border-bottom: none; }
td.c { color: #15803d; font-weight: 600; }
td.x { color: #d1d5db; }

.cta-box { background: #c2410c; padding: 44px; text-align: center; margin: 40px 0; border-radius: 10px; }
.cta-box h2 { font-family: 'Lora', serif; color: #fff; font-size: 28px; margin-top: 0; }
.cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 22px; }
.app-badge { height: 44px; }

details { background: #fff; border: 1px solid #fed7aa; border-radius: 8px; margin-bottom: 8px; }
details[open] { border-color: #c2410c; }
summary { padding: 16px 20px; font-weight: 600; color: #2c1810; cursor: pointer; font-size: 16px; list-style: none; font-family: 'Lora', serif; }
summary::marker { display: none; }
.faq-ans { padding: 0 20px 18px; color: #44200e; font-size: 16px; line-height: 1.75; }

footer { border-top: 1px solid #fed7aa; padding: 28px 32px; text-align: center; color: #92400e; font-size: 13px; background: #fff7ed; }
footer a { color: #78350f; }
footer a:hover { color: #c2410c; }

@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  section { padding: 36px 20px; }
  nav { padding: 0 16px; }
}

/* Image float integration */
.img-float {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 255px;
  width: 36%;
}
.img-float img {
  width: 100%;
  max-width: 220px;
  max-height: 300px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 1px solid #fdba74;
  border-radius: 4px;
}
.img-float .img-cap {
  font-size: 12px;
  color: #92400e;
  margin-top: 8px;
  line-height: 1.45;
  text-align: center;
}
.flow-block { overflow: hidden; }
@media (max-width: 640px) {
  .img-float {
    float: none;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 1.5rem;
    display: block;
  }
}
