




.hero-small {
  min-height: 45vh;
}

.waves-small {
  margin-bottom: -90px;
}


.hero-content-small {
  height: 280px;
}

.footer-page {
  margin-top: 0px;
}

.cta-page {
  margin: 60px 0px 0px 0px;
}

.cta-inner-page {
  padding: 50px 60px 10px 60px;
}





/* =========================
   INFOGRAPHIC SECTION
========================= */

.infographic {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.infographic-header {
  text-align: center;
  margin-bottom: 80px;
}

.infographic-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.infographic-header p {
  font-size: 0.9rem;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: 6px;
}

/* =========================
   GRID
========================= */

.infographic-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* =========================
   CARD WRAPPER (LINES)
========================= */

.info-card {
  position: relative;
  padding: 16px;
}

/* top-right line */
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 40px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
}

/* bottom-left line */
.info-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 40px;
  border-bottom: 2px solid #111;
  border-left: 2px solid #111;
}

/* =========================
   INNER BOX
========================= */

.info-box {
  position: relative;
  background-color: #ffeb3b;
  padding: 30px 26px 50px;
  min-height: 240px;
  box-shadow:
    -2px 2px 8px rgb(111 111 111 / 22%);
}

.info-box h3 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.info-box p {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* =========================
   NUMBER
========================= */

.info-number {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 2.4rem;
  font-weight: 700;
  opacity: 0.25;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .infographic-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .infographic-steps {
    grid-template-columns: 1fr;
  }
}









/* =========================
   INFO BLOCK SECTION
========================= */

.info-block {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

/* Top text */
.info-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================
   CARD
========================= */

.info-card-big {
  border: 0.3px solid #6d6d6d45;
  border-radius: 100px;
  padding: 60px 60px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow:
    -2px 5px 10px rgb(111 111 111 / 22%),
    inset 2px -6px 16px rgb(41 41 41 / 17%);
}

.info-card-big h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.25;
}

.info-card-big h2 span {
  color: #4faaf5; /* matches your accent blue */
}

/* Card text */
.info-card-big-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 700px) {

  .info-intro-big {
    margin-bottom: 70px;
    font-size: 0.95rem;
  }

  .info-card-big {
    padding: 60px 30px;
    border-radius: 60px;
  }

  .info-card-big h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {

  .info-card-big {
    padding: 50px 24px;
    border-radius: 40px;
  }

  .info-card-big h2 {
    font-size: 1.6rem;
  }
}





/* =========================
   PROCESS SECTION
========================= */

.process-section {
  max-width: 1200px;
  margin: 140px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: stretch;
}

/* =========================
   LEFT SIDE (TITLE)
========================= */

.process-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-left h2 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/* =========================
   RIGHT SIDE (CARDS)
========================= */

.process-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* =========================
   CARD
========================= */

.process-card {
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Colored step */
.process-step {
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Card content */
.process-content {
  padding: 26px 30px;
}

.process-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* =========================
   COLORS
========================= */

.card-yellow .process-step {
  background-color: #f6c84c;
}

.card-orange .process-step {
  background-color: #f2a14a;
}

.card-pink .process-step {
  background-color: #f06292;
}

.card-purple .process-step {
  background-color: #b968f2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .process-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-left h2 {
    font-size: 2.2rem;
  }
}













/* =========================
   DUAL CARDS SECTION
========================= */

.dual-cards {
  max-width: 1200px;
  margin: 140px auto;
  padding: 0 20px;
  
}

.dual-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  justify-content: center;
}

/* =========================
   CARD
========================= */

.dual-card {
  border: 0.2px solid #54545438;
  border-radius: 28px;
  padding: 40px 36px;
  text-align: left;
  box-shadow:
    -2px 5px 10px rgb(111 111 111 / 22%),
    inset 2px -6px 16px rgb(41 41 41 / 17%);
}

.dual-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 26px;
}

.dual-card h3 span {
  color: #4faaf5; /* accent blue */
}

/* =========================
   IMAGE PLACEHOLDER
========================= */

.dual-card-image {
  width: 100%;
  height: 160px;
  border-radius: 18px;
  background-color: #e6f7ff; /* fallback */
  margin-bottom: 24px;
}

/* Example image hooks */
.image-one {
  background-image: url("../assets/images/seo_1.webp");
  background-size: cover;
  background-position: center;
}

.image-two {
  background-image: url("../assets/images/seo_2.webp");
  background-size: cover;
  background-position: center;
}

/* =========================
   LIST
========================= */

.dual-card-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.dual-card-list li {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* =========================
   TEXT
========================= */

.dual-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .dual-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
