/* ================================
     REFRESH
     ================================ */

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
    color: #222;
  }

  /* H2 Headings */
  .the-content h2,.typography h2, h2.small-blue {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
    color: #0a3c8f;
    margin-top: 48px;
    margin-bottom: 20px;
    font-family: 'Inter' !important;
  }
	
	.the-content  h3, .typography h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
  margin-top: 32px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .the-content  h3 {
    font-size: 19px;
    line-height: 1.45;
    margin-top: 24px;
    margin-bottom: 8px;
  }
}
.the-content h3::before,
.typography h3::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: #e6e9ee;
  margin-bottom: 8px;
}


  /* Paragraph text */
  p, 
  #our-services-content .the-content p,
#about-content p
{
	      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;

    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #222;
    margin-bottom: 12px;
  }

  /* Improve spacing when paragraph follows heading */
  h2 + p {
    margin-top: 0;
  }
.the-content h2:first-of-type {
  margin-top: 0;
}
	
	.the-content > p + h2:first-of-type {
		 margin-top: 48px;
	}

  /* Lists */
  .the-content ul, 
  ol {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 1.4em;
    max-width: 70ch;
  }

  .the-content li {
    margin-bottom: 8px;
  }

  /* Links */
  a {
    color: #0a3c8f;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
  }

  a:hover,
  a:focus {
    color: #062c6f;
    text-decoration-thickness: 2px;
  }

  /* ================================
     Mobile adjustments
     ================================ */
  @media (max-width: 768px) {

    h2 {
      font-size: 24px;
      line-height: 1.3;
      margin-top: 36px;
      margin-bottom: 16px;
    }

    p,
    ul,
    ol {
      font-size: 17px;
      line-height: 1.65;
      margin-bottom: 12px;
      max-width: 100%;
    }

    li {
      margin-bottom: 6px;
    }

  }
	
	.sidebar-next-steps {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  position: sticky;
  top: 24px;
}
	


/* Phone & email links styled as soft buttons */
.sidebar-next-steps a[href^="tel:"],
.sidebar-next-steps a[href^="mailto:"] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background-color: #f9fafb;
  color: #222;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}

/* Hover / focus states */
.sidebar-next-steps a[href^="tel:"]:hover,
.sidebar-next-steps a[href^="mailto:"]:hover,
.sidebar-next-steps a[href^="tel:"]:focus,
.sidebar-next-steps a[href^="mailto:"]:focus {
  background-color: #f1f4f8;
  border-color: #cfcfcf;
}

/* Ensure icons align nicely */
.sidebar-next-steps a svg,
.sidebar-next-steps a i {
  font-size: 18px;
}

/* Primary CTA button inside sidebar */
.sidebar-next-steps .button,
.sidebar-next-steps a.button {
  display: block;
  margin-top: 14px;
  text-align: center;
}


.support-block {
  background-color: #f7f9fc;
  border: 1px solid #e6e9ee;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 32px 0;
}

/* Title */
.support-block__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #222;
  margin: 0 0 8px 0;
}

/* Body text */
.support-block__text {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: #222;
  margin: 0 0 12px 0;
  max-width: none;
}

/* Hide lists by default (compact variant) */
.support-block__list {
  display: none;
}

/* Actions container */
.support-block__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Primary action button */
.support-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  min-height: 44px;

  background-color: #2f7d32;
  border: 1px solid #2f7d32;
  border-radius: 10px;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;

  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}


.support-block__btn:hover {
  background-color: #27692a;
  border-color: #27692a;
}

.support-block__btn:focus {
  outline: 3px solid #a5d6a7;
  outline-offset: 2px;
}

/* =========================================
   Mobile adjustments
   ========================================= */

@media (max-width: 768px) {

  .support-block {
    padding: 14px 14px;
    margin: 28px 0;
  }

  .support-block__title {
    font-size: 17px;
  }

  .support-block__text {
    font-size: 16px;
  }

  .support-block__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .support-block__btn {
    width: 100%;
    font-size: 16px;
  }

}

.support-block {
  background-color: #f7f9fc;
  border: 1px solid #e6e9ee;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 32px 0;
}

/* Title */
.support-block__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #222;
  margin: 0 0 8px 0;
}

/* Body text */
.support-block__text {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: #222;
  margin: 0 0 12px 0;
  max-width: none;
}

/* Hide lists by default (compact variant) */
.support-block__list {
  display: none;
}

/* Actions container */
.support-block__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Primary action button */
.support-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  min-height: 44px;

  background-color: #2f7d32;
  border: 1px solid #2f7d32;
  border-radius: 10px;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;

  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}


.support-block__btn:hover {
  background-color: #27692a;
  border-color: #27692a;
}

.support-block__btn:focus {
  outline: 3px solid #a5d6a7;
  outline-offset: 2px;
}

/* =========================================
   Mobile adjustments
   ========================================= */

@media (max-width: 768px) {

  .support-block {
    padding: 14px 14px;
    margin: 28px 0;
  }

  .support-block__title {
    font-size: 17px;
  }

  .support-block__text {
    font-size: 16px;
  }

  .support-block__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .support-block__btn {
    width: 100%;
    font-size: 16px;
  }

}