:root {
  --red-primary: rgb(214, 33, 49);
  --red-highlight: rgb(250, 0, 20);
  --blue-dark: rgb(0, 45, 108);
  --blue-light: rgb(41, 92, 162);
  --text-grey: rgb(68, 68, 68);
  --text-black: rgb(0, 0, 0);
  --font-poppins: "Poppins", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

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

body {
  background-color: #ffffff;
  font-family: var(--font-roboto);
  color: var(--text-black);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 959px) {
  .container {
    padding: 0 20px;
  }
}

/* Hero Section with Background */
.hero-wrapper {
  position: relative;
  width: 100%;
  /*min-height: 550px;*/
  /* background-image: url('../image/pexels-binyamin-mellish-1396122-compressformat_clip_1600.jpg'); */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 960px;
}

.header-title {
  font-family: var(--font-poppins);
  font-size: clamp(28px, 5vw, 39px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-black);
  margin-bottom: 40px;
}

@media (max-width: 959px) {
  .hero-wrapper {
    min-height: auto;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn-hero {
  display: inline-block;
  background-color: var(--blue-light);
  color: #ffffff;
  font-family: var(--font-poppins);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  padding: 12px clamp(20px, 5vw, 35px);
  text-decoration: none;
  border-radius: 20px;
  transition:
    transform 0.2s,
    background 0.3s;
  margin-bottom: 20px;
}

.btn-hero:hover {
  background-color: rgb(180, 25, 38);
  transform: scale(1.02);
}

.sub-hero-text {
  font-family: var(--font-roboto);
  font-size: clamp(16px, 3vw, 19px);
  line-height: 1.4;
  max-width: 446px;
  width: 100%;
  color: var(--text-black);
  margin: 20px auto;
}

/* Intro Text Area */
.intro-section {
  padding: 60px 0;
  text-align: center;
}
.intro-hero-link {
  text-decoration: none;
  color: inherit;
}
.intro-text {
  font-family: var(--font-poppins);
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.5;
  margin: 0 auto;
  background-color: rgb(226, 240, 255);
  padding: 20px;
  min-height: 100px;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}

.text-highlight {
  color: var(--red-highlight);
  font-weight: 700;
  text-decoration: underline;
}

/* Content Sections */
.section {
  padding: clamp(20px, 5vw, 40px) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 40px);
  align-items: center;
}

@media (max-width: 959px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.heading-blue {
  font-family: var(--font-poppins);
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--blue-dark);
  margin-top: 20px;
}

.heading-sub {
  font-family: var(--font-poppins);
  font-size: clamp(24px, 5vw, 35px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--blue-dark);
  text-align: center;
}

.intro-text-large {
  font-family: var(--font-poppins);
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.6;
  color: var(--text-black);
  margin: 20px auto;
}

.body-text-large {
  margin: 20px 0;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.6;
}

.img-responsive {
  max-width: 836px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
  display: block;
  margin: 0 auto 35px;
}

/* Info Box */
.info-box {
  background-color: #eff6ff;
  border-left: 8px solid #3b82f6;
  padding: 40px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
}

.info-box p {
  font-family: var(--font-poppins);
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 20px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Step Layout */
.step-item {
  margin-bottom: 60px;
}
.step-header {
  font-family: var(--font-poppins);
  font-size: clamp(24px, 5vw, 35px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--blue-dark);
  margin-bottom: 30px;
}
.step-title {
  font-family: var(--font-poppins);
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.5;
  color: rgb(0, 45, 108);
  font-weight: 400;
  margin-bottom: 15px;
}

.step-num {
  font-weight: 700;
}

.map-wrapper {
  text-align: center;
  /*margin: clamp(20px, 5vw, 40px) 0;*/
}

.map-wrapper img {
  max-width: 700px;
  width: 100%;
}

.btn-cta-wrapper {
  text-align: center;
  margin-top: clamp(20px, 5vw, 40px);
}

.btn-cta {
  display: inline-block;
  background-color: var(--red-primary);
  color: #ffffff;
  font-family: var(--font-poppins);
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  padding: 15px clamp(20px, 5vw, 45px);
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.btn-cta:hover {
  transform: scale(1.02);
}

/* Footer */
.footer {
  background-color: rgb(62, 62, 62);
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

.footer-text {
  font-family: var(--font-poppins);
  font-size: 14px;
  /* margin-bottom: 20px; */
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
}

.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
