@charset "UTF-8";
/* CSS Document */

:root {
  --header-height: 132px;
}

/* Your fixed header uses this height */
.section-header {
  height: var(--header-height);
}

/* Push the first section down so it can't sit underneath the fixed header */
.section-header-support {
  padding-top: var(--header-height);
}

/* ------------------------------------------- */
/* TOP PICTURE */
/* ------------------------------------------- */

.section-header-support {
	margin-top: 80px;
}
.header-box-support {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	overflow: hidden; /* ensures rounded corners clip the image */
}
.header-support-image {
    display: block;
    width: 100%;
    height: auto;
}
.supportbox {
	width: 100%;
	height: auto;
	border: 1px solid #D0AF5A;
	padding: 25px;
	border-radius: 20px;
}

/* ------------------------------------------- */
/* MAIN SECTION */
/* ------------------------------------------- */

.support-unit-name {
  color: #ff6666;
}

.support-highlight {
  color: #ff6666; 
}

.support-email-link,
.support-email-link:visited,
.support-email-link:hover,
.support-email-link:active {
  color: #ff6666;
  text-decoration: none;
  border-bottom: 1px dashed #ff6666;
}


/* ------------------------------------------- */
/* CHECKBOXES */
/* ------------------------------------------- */

.support-checkboxes {
  list-style: none;
  margin: 10px 0 20px 0;
  padding: 0;
}
.support-checkbox-line {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 10px;
	margin-left: 15px;
}
.support-checkbox-line i {
  color: #ff6666;
  font-size: 1.4em;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ------------------------------------------- */
/* REFERRAL & ASSESSMENT POINTS */
/* ------------------------------------------- */

.section-support-referral {
    background-color: #f8f9fa;
    padding: 50px 0 70px;
}
.support-referral-list {
    position: relative;
    width: calc(100% - 40px);   /* creates the visual indent */
    margin-left: 40px;         /* ← left indent */
    border: 1px solid #fff;
    padding: 28px 30px 28px 55px;
    background-image: linear-gradient(
        90deg,
        rgba(255,255,255,0),
        rgba(255,255,255,1)
    );
    border-radius: 25px;
    margin-top: 25px;
}
.support-circle-steps {
    position: absolute;
    top: 22px;
    left: -28px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #ff6666;
    background-color: #fff;
    border: 2px solid #ff6666;
    border-radius: 50%;
}

.referral-highlight {
    color: #ff6666;
	border-bottom: 1px dashed #ff6666;
}




/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */

/* -------------------------------------------
   Laptop / small desktop (≤ 1450px)
   - reduce big top spacing slightly
------------------------------------------- */
@media (max-width: 1450px) {
  .section-header-support {
    margin-top: 70px;
  }
}

/* -------------------------------------------
   Tablet landscape (≤ 1024px)
   - slightly tighter padding
   - keep indent but reduce it
------------------------------------------- */
@media (max-width: 1024px) {
  .section-header-support {
    margin-top: 60px;
  }

  .header-box-support {
    padding: 12px;
    border-radius: 14px;
  }

  .supportbox {
    padding: 20px;
    border-radius: 18px;
  }

  .section-support-referral {
    padding: 45px 0 60px;
  }

  .support-referral-list {
    width: calc(100% - 28px);
    margin-left: 28px;
    padding: 26px 24px 26px 52px;
    border-radius: 22px;
  }

  .support-circle-steps {
    top: 20px;
    left: -26px;
  }
}

/* -------------------------------------------
   Tablet portrait + small tablets (≤ 767px)
   - remove left indent + switch circle above
   - avoid awkward squeeze
------------------------------------------- */
@media (max-width: 767px) {
  .section-header-support {
    margin-top: 40px;
  }

  .header-box-support {
    padding: 10px;
    border-radius: 12px;
  }

  .supportbox {
    padding: 18px;
    border-radius: 16px;
  }

  .support-checkbox-line {
    margin-left: 8px;
  }

  .section-support-referral {
    padding: 40px 0 55px;
  }

  .support-referral-list {
    width: 100%;
    margin-left: 0;
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .support-circle-steps {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 10px;
  }
}

/* -------------------------------------------
   Mobile (≤ 599px)
   - smallest spacing
   - keep everything readable
------------------------------------------- */
@media (max-width: 599px) {
  .section-header-support {
    margin-top: 30px;
  }

  .header-box-support {
    padding: 8px;
    border-radius: 10px;
  }

  .supportbox {
    padding: 16px;
    border-radius: 14px;
  }

  .support-checkbox-line i {
    font-size: 1.25em;
  }

  .section-support-referral {
    padding: 35px 0 50px;
  }

  .support-circle-steps {
    height: 38px;
    width: 38px;
    font-size: 1.15rem;
  }
}









