.container p, .content-wrapper p, .content-wrapper li {
  font-size: 1.3rem !important; /* roughly 18px if base is 16px */
  line-height: 1.8;
}	

p.breadcrumb
{
	line-height: 1.5;
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4
{
  line-height: 2;
  font-weight:normal;
}

.content-wrapper h2:first-of-type {
  line-height: 1.2; /* or whatever value you want */
}

.circular-thumb 
{
	width: 255px;            /* Set fixed width */
	height: 255px;           /* Set same height for a circle */
	border-radius: 50%;      /* Makes it round */
	overflow: hidden;        /* Hide the overflow */
	position: relative;      /* Needed for child positioning */
}

.circular-thumb img 
{
	width: auto;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	object-fit: cover;
	align:center;
}

@media screen and (max-width: 768px) {
  .circular-thumb {
    margin: 0 auto; /* centers the block */
  }

  .more-blog p {
    text-align: center; /* centers the text above the image */
  }
}

.testimonial-image 
{
	width: 143px;            /* Set fixed width */
	height: 143px;           /* Set same height for a circle */
	border-radius: 50%;      /* Makes it round */
	overflow: hidden;        /* Hide the overflow */
	position: relative;      /* Needed for child positioning */
}

.testimonial-image img 
{
	width: auto;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	object-fit: cover;
	align:center;
}


a.blog-btn
{
	color: #ffffff !important;
	text-decoration: none !important;
}

.content-wrapper p, .mt-12 p, .container p
{
	margin-bottom:1.5rem;
}

.section-support 
{
	margin-top: -11.25rem;
	padding-top: 14rem;
}

.content-wrapper p a, .content-wrapper li a, .contact-content p a
{
	color: #0097ff;
	text-decoration: underline;
}

.testimonial-wrapper p a
{
	color: #000000;
	text-decoration: none;
}

p a:hover
{
	text-decoration: none;
}

.heading-style-h2 
{
	margin-top: 2rem;
	font-weight:normal;
}

.heading-style-h3 
{
	margin-top: 2rem;
	margin-bottom: 0.5rem;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-weight: 600;
}

@media (min-width: 768px) 
{
	.heading-style-h3 
	{
		font-size: 2.25rem;
		line-height: 2.5rem;
		margin-bottom: 1rem;
	}
}

.content-wrapper ul 
{
	list-style-type: disc;
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.content-wrapper li 
{
	margin-bottom: 0.5rem;
}

.heading-style-h4 
{
	margin-bottom: 0.5rem;
	font-size: 1.375rem; /* 22px */
	line-height: 1.75rem;
	font-weight: 600;
}

@media (min-width: 768px) 
{
	.heading-style-h4 
	{
		font-size: 1.5rem; /* 24px */
		line-height: 2rem;
		margin-bottom: 0.75rem;
	}
}

.hero-text-align-fix 
{
	padding-top: 5.5rem !important; /* Adjust this value as needed */
	justify-content: flex-start !important;
	padding-bottom: 0 !important;
}

@media (max-width: 768px) {
  .hero-text-align-fix {
    padding-top: 2rem !important; /* adjust this value as needed */
  }
}

/* Widen service intro text content */
.service-intro-content 
{
	max-width: none !important;
	width: 90% !important;
}


/* 1. Increase white box padding (top and bottom spacing) */
.tips-card-wrapper 
{
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
	row-gap: 3rem !important; /* more vertical space between rows */
}

/* 2. Increase spacing between divider line and the text */
.tips-devider 
{
	margin-bottom: 1.5rem !important;
}

/* 3. Increase card title font size to match H2s */
.tips-card h3 
{
	font-size: 2.5rem !important;
	line-height: 1.1 !important;
}

/* 4. Optional: add a bit more breathing room inside each card */
.tips-card 
{
	padding: 1.5rem !important;
}


/* 1. Match font size to section headers */
.service-cards-wrapper.is-secondary h3 
{
	font-size: 2.5rem !important;
	line-height: 1.1 !important;
}

/* 2. Reduce spacing between lines of the heading text */
.service-cards-wrapper.is-secondary h3 a 
{
	display: inline-block;
	line-height: 1 !important;
}

/* 3. Reduce the margin above and below the tips divider */
.service-cards-wrapper.is-secondary .tips-devider 
{
	margin-bottom: 1rem !important;
	margin-top: 0.5rem !important;
}

.shorter-width 
{
	max-width: 40rem;
}

/* 1. Let the intro text wrap naturally over two lines */
.section-cta p 
{
	max-width: 100% !important;
	white-space: normal !important;
}


/* 3. Add more space between the form and the button */
.cta-form .mt-4 
{
	margin-top: 3rem !important;
}

/* 4. Add more bottom space under the button before footer */
.section-cta .submit-button 
{
	margin-bottom: 4rem !important;
}

/* Optional tweak: cap message box width to align better */
.cta-input 
{
	max-width: 75% !important;
}

/* Make the left and right form columns sit side-by-side without space between */
.cta-form-wrapper 
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
}

/* Force left and right columns to take up 50% each and align flush */
.cta-form-wrapper > .lg\:w-1\/2 
{
	width: 100%;
	max-width: 100%;
	padding: 0;
}

/* Desktop only: Side-by-side layout */
@media (min-width: 1024px) {
  .cta-form-wrapper > .lg\:w-1\/2 {
    width: 50% !important;
    max-width: none !important;
  }

  .cta-form-wrapper > .lg\:w-1\/2:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 1rem;
  }

  .cta-form-wrapper > .lg\:w-1\/2:last-child {
    padding-left: 1rem;
  }
}

/* Align left side content (name/email) to the right */
.cta-form-wrapper > .lg\:w-1\/2:first-child 
{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding-right: 1rem;
}

/* Align right side content (textarea) to the left */
.cta-form-wrapper > .lg\:w-1\/2:last-child 
{
	padding-left: 1rem;
}

@media (max-width: 640px) {
/* Base styles */
.cta-input {
  width: 100%;
  max-width: 100%; /* Important to avoid mismatch on mobile */
  box-sizing: border-box; /* Ensures padding doesn’t break widths */
}

/* Ensure .cta-form-wrapper behaves on mobile */
.cta-form-wrapper {
  flex-direction: column;
}

/* Optional: fine-tune spacing */
.cta-form-wrapper > .lg\:w-1\/2 {
  width: 100% !important;
  padding: 0 !important; /* Remove left/right gaps from desktop version */
}
  
  .cta-form input,
.cta-form textarea {
  margin-bottom: 1rem;
}
}



.testimonial-content 
{
	padding: 1.5rem !important;
}

.testimonial-left 
{
	align-self: flex-start !important;
	min-height: auto !important;
	height: auto !important;
}

.testimonial 
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem !important; /* reduce this from a larger value like 4rem+ */
}

.testimonial-wrapper 
{
	padding-bottom:4em !important;
}

h4.sidebar 
{
	font-size: 1.60rem;     /* or 1.5rem for even bigger */
	font-weight: 700;       /* bold */
	margin-bottom: 1rem;    /* spacing below */
	color: #000;            /* or inherit if you want it to match body */
	text-align: center;
}

h4.sidebar:first-of-type 
{
	margin-top: 2rem; /* specific to just the first h4.sidebar */
}


#cf_title
{
	display:none;
}

.sidebar_list {
  padding-top: 1rem;
  padding-bottom: 1rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.sidebar_item {
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e2e2e2; /* light grey line */
  padding-bottom: 0.75rem;
}

.sidebar_item:last-child {
  border-bottom: none; /* remove border under last item */
}


.sidebar_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.sidebar-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.service-card-content {
  position: relative;
  padding: 1.5rem;
  padding-bottom: 5rem; /* leaves space for icon */
  min-height: 220px;
}

.service-card-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 80px;
  height: auto;
}

.service-card.is-secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card.is-secondary .support-icon {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .cta-form-wrapper {
    flex-direction: column;
  }

  .cta-form-wrapper > .lg\:w-1\/2 {
    width: 100% !important;
    padding: 0 !important;
  }

  .cta-input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    display: block;
  }

  textarea.cta-input {
    height: auto;
    min-height: 7rem; /* Adjust as needed */
  }
  
  .email-me
  {
	  font-size: 1rem !important;
  }
	  

}

.bg-\[url\(\'\.\.\/assets\/images\/home_bg_5\.jpg\'\)\]{background-image:url(../assets/images/home_bg_5\.jpg);}