body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(120deg, #f7f7f7 60%, #fff 100%);
  overflow-x: hidden;
  color: #23233a;
}

.lg-header, .lg-footer {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.lg-header {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.lg-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.lg-logo {
  display: flex;
  align-items: center;
}
.lg-logo img {
  height: 36px;
  margin-right: 10px;
}
.lg-nav {
  display: flex;
  gap: 20px;
}
.lg-nav a {
  color: #23233a;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.lg-nav a:hover {
  color: #e51a1a;
}
.lg-support-links {
  display: flex;
  gap: 14px;
}
.lg-support-links a {
  color: #e51a1a;
  text-decoration: none;
  font-size: 1.1em;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #e51a1a;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Hero Section */
.hero {
  width: 100%;
  background: linear-gradient(120deg, #fff 60%, #ffeaea 100%);
  padding: 36px 0 24px 0;
  text-align: center;
  box-shadow: 0 2px 16px 0 rgba(229,26,26,0.04);
}
.hero h1 {
  color: #e51a1a;
  font-size: 2.1em;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.hero p {
  color: #23233a;
  font-size: 1.15em;
  margin: 0 auto 18px auto;
  max-width: 480px;
  line-height: 1.5;
}
.hero .cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #e51a1a 60%, #b31313 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1em;
  padding: 14px 36px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 16px 0 rgba(229,26,26,0.10);
  margin-top: 18px;
  margin-bottom: 8px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s;
}
.hero .cta-btn:hover {
  background: linear-gradient(90deg, #b31313 60%, #e51a1a 100%);
  box-shadow: 0 8px 32px 0 rgba(229,26,26,0.13);
}

.main-content {
  max-width: 900px;
  margin: 0 auto 0 auto;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 0 0 32px 0;
  box-sizing: border-box;
  width: 100%;
}
.main-content h2 {
  color: #23233a;
  margin-top: 32px;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Steps Section (see previous modern .steps/.step) */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  justify-items: center;
}
.step {
  width: 90vw;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 24px 0 rgba(40,40,80,0.10), 0 1.5px 6px 0 rgba(229,26,26,0.06);
  border: 1.5px solid #f0f0f5;
  transition: box-shadow 0.25s, border 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.step i {
  font-size: 2.4em;
  color: #e51a1a;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 6px rgba(229,26,26,0.10));
  transition: color 0.25s;
}
.step h3 {
  font-size: 1.18em;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #23233a;
  letter-spacing: 0.01em;
}
.step p {
  color: #555;
  font-size: 1em;
  margin: 0;
  line-height: 1.5;
}
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(229,26,26,0.07) 0%, rgba(229,26,26,0.03) 100%);
  z-index: 0;
  border-radius: 20px;
  pointer-events: none;
}
.step > * { position: relative; z-index: 1; }
.step:hover, .step:focus {
  box-shadow: 0 8px 32px 0 rgba(229,26,26,0.13), 0 2px 8px 0 rgba(40,40,80,0.10);
  border: 1.5px solid #e51a1a;
  background: linear-gradient(120deg, #fff 60%, #ffeaea 100%);
}
.step:hover i, .step:focus i {
  color: #b31313;
}

/* Options Section */
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 32px 0;
  justify-content: center;
}
.option-card {
  flex: 1 1 180px;
  max-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(40,40,80,0.07);
  padding: 20px 12px 18px 12px;
  text-align: center;
  border: 1.2px solid #f0f0f5;
  transition: box-shadow 0.2s, border 0.2s;
}
.option-card i {
  font-size: 2em;
  color: #e51a1a;
  margin-bottom: 10px;
}
.option-card h4 {
  font-size: 1.08em;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #23233a;
}
.option-card p {
  color: #555;
  font-size: 0.98em;
  margin: 0 0 8px 0;
}
.option-card a {
  color: #e51a1a;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.98em;
}
.option-card:hover, .option-card:focus {
  box-shadow: 0 6px 24px 0 rgba(229,26,26,0.10);
  border: 1.2px solid #e51a1a;
}

/* Contact Section */
.contact-section {
  margin-top: 40px;
}
.contact-section h2 {
  color: #23233a;
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.contact-card {
  flex: 1 1 160px;
  max-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(40,40,80,0.07);
  padding: 18px 10px 16px 10px;
  text-align: center;
  border: 1.2px solid #f0f0f5;
  transition: box-shadow 0.2s, border 0.2s;
}
.contact-card i {
  font-size: 1.7em;
  color: #e51a1a;
  margin-bottom: 8px;
}
.contact-card h4 {
  font-size: 1em;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #23233a;
}
.contact-card p {
  color: #555;
  font-size: 0.97em;
  margin: 0 0 6px 0;
}
.contact-card a {
  color: #e51a1a;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.97em;
}
.contact-card:hover, .contact-card:focus {
  box-shadow: 0 6px 18px 0 rgba(229,26,26,0.10);
  border: 1.2px solid #e51a1a;
}

.lg-footer {
  margin-top: 48px;
  padding: 32px 0 0 0;
  background: linear-gradient(120deg, #fff 60%, #f7f7f7 100%);
  border-top: 1.5px solid #f0f0f5;
}
.lg-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding: 0 32px;
}
.footer-col {
  flex: 1 1 180px;
}
.footer-col h4 {
  color: #e51a1a;
  margin-bottom: 12px;
  font-size: 1.08em;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: #23233a;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.98em;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #e51a1a;
}
.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 0.95em;
  margin: 24px 0 0 0;
  padding-bottom: 16px;
}

.sticky-call-btn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #e51a1a 60%, #b31313 100%);
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  padding: 18px 0 14px 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sticky-call-btn:hover {
  background: linear-gradient(90deg, #b31313 60%, #e51a1a 100%);
}
.sticky-call-btn i {
  font-size: 1.3em;
}
button, .sticky-call-btn, .main-content button {
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.main-content button {
  box-shadow: 0 2px 8px rgba(229,26,26,0.08);
  background: linear-gradient(90deg, #e51a1a 60%, #b31313 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1em;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  margin: 24px 0;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s;
}
.main-content button:hover {
  background: linear-gradient(90deg, #b31313 60%, #e51a1a 100%);
  box-shadow: 0 8px 32px 0 rgba(229,26,26,0.13);
}

@media (max-width: 900px) {
  .main-content {
    padding: 0 0 24px 0;
  }
  .lg-header .container {
    flex-direction: row;
    align-items: center;
    padding: 10px 8px;
  }
  .lg-logo img {
    height: 30px;
  }
  .lg-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 0;
    z-index: 999;
    display: none;
  }
  .lg-nav.open {
    display: flex;
  }
  .lg-nav a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1em;
  }
  .lg-support-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .main-content {
    padding: 0 0 16px 0;
    width: 100vw;
    box-sizing: border-box;
  }
  .steps {
    gap: 10px;
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }
  .step {
    padding: 10px;
    max-width: 95vw;
  }
  .options, .contact-methods, .lg-footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .option-card, .contact-card, .footer-col {
    max-width: 95vw;
    width: 100%;
  }
}
@media (min-width: 600px) {
  .hero {
    padding: 56px 0 32px 0;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 36px 0;
  }
  .step {
    width: 100%;
    max-width: 240px;
    padding: 28px;
  }
} 