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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222222;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: auto;
}

/* HEADER */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 265px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-menu a {
  color: #222222;
  font-size: 15px;
  font-weight: 700;
}

.main-menu a:hover {
  color: #b62a2a;
}

.call-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b62a2a;
  color: #ffffff !important;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 700;
  border: 2px solid #b62a2a;
  transition: 0.25s ease;
}

.call-btn:hover,
.primary-btn:hover {
  background: #941f1f;
  border-color: #941f1f;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #222222;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 700;
  border: 2px solid #222222;
  transition: 0.25s ease;
}

.secondary-btn:hover {
  background: #222222;
  color: #ffffff;
}

/* MOBILE MENU */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #dddddd;
  background: #ffffff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  background: #222222;
  display: block;
}

/* HERO */

.hero {
  background: #f7f7f7;
  padding: 70px 0;
  border-bottom: 1px solid #eeeeee;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: #b62a2a;
  background: #ffffff;
  border: 1px solid #ead0d0;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  color: #191919;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  color: #555555;
  font-size: 17px;
  font-weight: 600;
  max-width: 610px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5e5e5;
  background: #ffffff;
}

.trust-row div {
  padding: 18px;
  border-right: 1px solid #e5e5e5;
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong {
  display: block;
  color: #b62a2a;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 5px;
}

.trust-row span {
  color: #555555;
  font-size: 14px;
  font-weight: 700;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 10px solid #ffffff;
}

/* SUPPORT */

.support-bar {
  background: #ffffff;
  padding: 38px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.support-box {
  border: 1px solid #e8e8e8;
  padding: 24px;
  background: #ffffff;
}

.support-box h3 {
  color: #1f1f1f;
  font-size: 20px;
  margin-bottom: 8px;
}

.support-box p {
  color: #666666;
  font-weight: 600;
}
/* Support Card CTA */

.support-box a{
    display:inline-flex;
    margin-top:18px;
    padding:12px 20px;
    color:#b62a2a;
    font-size:16px;
    font-weight:700;
    transition:.3s ease;
}


.support-box{
    display:flex;
    flex-direction:column;
}

.support-box p{
    margin-bottom:18px;
}

.support-box a{
    margin-top:auto;
}
/* COMMON */

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  color: #1f1f1f;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-heading p {
  color: #666666;
  font-size: 17px;
  font-weight: 600;
}

/* ROUTES */

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.route-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  transition: 0.25s ease;
}

.route-card:hover {
  border-color: #b62a2a;
  transform: translateY(-4px);
}

.route-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.route-card div {
  padding: 22px;
}

.route-card span {
  color: #b62a2a;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-card h3 {
  font-size: 22px;
  color: #1f1f1f;
  margin: 6px 0 10px;
}

.route-card p {
  color: #666666;
  font-weight: 600;
  margin-bottom: 16px;
}

.route-card a {
  color: #b62a2a;
  font-weight: 800;
}

/* ABOUT */

.about-section {
  background: #f7f7f7;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-content h2 {
  color: #1f1f1f;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-content p {
  color: #555555;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}

.about-content li {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  padding: 13px 14px;
  color: #222222;
  font-weight: 700;
}

.about-content li::before {
  content: "✓";
  color: #b62a2a;
  margin-right: 8px;
  font-weight: 900;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 28px 24px;
}

.process-card span {
  display: inline-block;
  color: #b62a2a;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
}

.process-card h3 {
  color: #1f1f1f;
  font-size: 22px;
  margin-bottom: 8px;
}

.process-card p {
  color: #666666;
  font-weight: 600;
}

/* REVIEWS */

.reviews-section {
  background: #f7f7f7;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 28px;
}

.stars {
  color: #b62a2a;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
}

.review-card p {
  color: #444444;
  font-weight: 600;
  margin-bottom: 18px;
}

.review-card h4 {
  color: #1f1f1f;
}

/* FAQ */

.faq-section {
  padding: 72px 0;
  background: #ffffff;
}

.faq-list {
  max-width: 850px;
  margin: auto;
}

.faq-item {
  border: 1px solid #e5e5e5;
  margin-bottom: 12px;
  background: #ffffff;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: #ffffff;
  padding: 18px 20px;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
  color: #1f1f1f;
  cursor: pointer;
}

.faq-content {
  display: none;
  padding: 0 20px 20px;
}

.faq-content p {
  color: #666666;
  font-weight: 600;
}

.faq-item.active .faq-content {
  display: block;
}

/* CTA */

.final-cta {
  background: #1f1f1f;
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
}

.final-cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.final-cta p {
  color: #dddddd;
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 17px;
  font-weight: 600;
}

/* FOOTER */

.footer {
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 35px;
}

.footer-logo {
  width: 255px;
  margin-bottom: 18px;
}

.footer p {
  color: #555555;
  font-weight: 600;
  max-width: 520px;
  margin-bottom: 9px;
}

.footer h4 {
  color: #1f1f1f;
  margin-bottom: 14px;
  font-size: 18px;
}

.footer a {
  display: block;
  color: #555555;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer a:hover {
  color: #b62a2a;
}

.copyright {
  border-top: 1px solid #eeeeee;
  padding: 18px;
  text-align: center;
  color: #555555;
  font-size: 14px;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-wrap,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-image img,
  .about-image img {
    height: 380px;
  }

  .support-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 72px;
  }

  .logo img {
    width: 210px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 24px;
    border-top: 1px solid #eeeeee;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }

  .main-menu.active {
    display: flex;
  }

  .main-menu .call-btn {
    width: 100%;
    max-width: 240px;
  }

  .hero {
    padding: 42px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .trust-row {
   grid-template-columns: repeat(3, 1fr);
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading h2,
  .about-content h2,
  .final-cta h2 {
    font-size: 29px;
  }

  .support-grid,
  .route-grid,
  .review-grid,
  .process-grid,
  .about-content ul {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-image img,
  .about-image img {
    height: 280px;
  }
}

.page-hero {
  background: #f7f7f7;
  padding: 70px 0;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.page-hero h1 {
  font-size: 46px;
  color: #1f1f1f;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  color: #666666;
  font-weight: 700;
}

.policy-section {
  padding: 70px 0;
  background: #ffffff;
}

.policy-box {
  margin: auto;
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 45px;
}

.policy-box h2 {
  color: #b62a2a;
  font-size: 24px;
  margin: 28px 0 10px;
}

.policy-box h2:first-child {
  margin-top: 0;
}

.policy-box p {
  color: #555555;
  font-weight: 600;
  margin-bottom: 14px;
}

.policy-box ul {
  padding-left: 22px;
  margin: 15px 0 25px;
}

.policy-box li {
  color: #555555;
  font-weight: 600;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 45px 0;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .policy-section {
    padding: 45px 0;
  }

  .policy-box {
    padding: 26px;
  }
}