@media (max-width: 767px) {
  h1 { font-size: 36px; line-height: 44px; }
  h2 { font-size: 28px; line-height: 36px; }
  h3 { font-size: 24px; line-height: 32px; }
  h4 { font-size: 20px; line-height: 28px; }
  h5 { font-size: 18px; line-height: 26px; }
  h6 { font-size: 16px; line-height: 24px; }
  body { font-size: 14px; line-height: 26px; }
}


@media (min-width: 768px) and (max-width: 1024px) {
  h1 { font-size: 48px;  line-height: 56px; }
  h2 { font-size: 36px;  line-height: 44px; }
  h3 { font-size: 28px;  line-height: 36px; }
  h4 { font-size: 24px;  line-height: 32px; }
  h5 { font-size: 20px;  line-height: 28px; }
  h6 { font-size: 18px;  line-height: 26px; }
  body { font-size: 14px; line-height: 26px; }
}

/* ========================================
Base Styles & Setup - Scoped with uf- prefix
======================================== */
.uf-promo-component-wrapper {
    background-color: #F7F5F2;
    font-family: 'Public Sans', sans-serif;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.uf-promo-component-wrapper .uf-main-container {
    max-width: 1050px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* ========================================
Section & Card Styles (Desktop)
======================================== */
.uf-promo-component-wrapper .uf-promo-section {
    display: flex;
    align-items: center;
    position: relative;
}

.uf-promo-component-wrapper .uf-promo-section .uf-background-image {
    flex-basis: 60%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    object-position: center;
}

.uf-promo-component-wrapper .uf-promo-section .uf-content-card {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    flex-basis: 55%;
    box-sizing: border-box;
    z-index: 10;
}

/* ========================================
Layout Logic
======================================== */

/* --- Default Layout: Image on the Left --- */
.uf-promo-component-wrapper .uf-promo-section .uf-content-card {
    margin-left: -15%;
}

/* --- Modifier Class: Image on the Right --- */
.uf-promo-component-wrapper .uf-promo-section.uf-image-right {
    flex-direction: row-reverse;
}

.uf-promo-component-wrapper .uf-promo-section.uf-image-right .uf-content-card {
    margin-left: 0;
    margin-right: -15%;
}

/* ========================================
Content & Button Styles
======================================== */
.uf-promo-component-wrapper .uf-content-card .uf-section-title {
    color: #0a2a3b;
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.uf-promo-component-wrapper .uf-content-card .uf-section-content {
    color: #5a6e75;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.uf-promo-component-wrapper .uf-content-card .uf-cta-button {
    display: inline-block;
    background-color: #ffc94e;
    color: #0a2a3b;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.uf-promo-component-wrapper .uf-content-card .uf-cta-button:hover {
    background-color: #f7be38;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ========================================
Responsive Styles (Mobile)
======================================== */
@media (max-width: 992px) {
    .uf-promo-component-wrapper .uf-promo-section .uf-content-card {
        margin-left: -5% !important;
    }
    .uf-promo-component-wrapper .uf-promo-section.uf-image-right .uf-content-card {
        margin-left: 0 !important;
        margin-right: -5% !important;
    }
    .uf-promo-component-wrapper .uf-promo-section .uf-background-image {
        flex-basis: 65% !important;
    }
    .uf-promo-component-wrapper .uf-promo-section .uf-content-card {
        flex-basis: 50% !important;
        padding: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .uf-promo-component-wrapper {
        padding: 2rem 1.5rem !important;
    }
    .uf-promo-component-wrapper .uf-main-container {
        gap: 2rem !important;
    }

    .uf-promo-component-wrapper .uf-promo-section,
    .uf-promo-component-wrapper .uf-promo-section.uf-image-right {
        flex-direction: column !important;
    }

    .uf-promo-component-wrapper .uf-promo-section .uf-background-image {
        display: none !important;
    }

    .uf-promo-component-wrapper .uf-promo-section .uf-content-card,
    .uf-promo-component-wrapper .uf-promo-section.uf-image-right .uf-content-card {
        width: 100% !important;
        margin: 0 !important;
        padding: 2rem !important;
    }

    .uf-promo-component-wrapper .uf-content-card .uf-section-title {
        font-size: 1.8rem !important;
    }
}
/* * =============================================
        * CUSTOM CTA COMPONENT STYLES
        * =============================================
        */

/* Wrapper to control component placement */
.cta-component-wrapper {
    width: 100%;
}

/* Main container for the entire CTA section */
.custom-cta-section {
    --cta-bg-color: #2a5546; /* Dark green color from the image */
    --cta-text-color: #ffffff;
    --cta-button-bg: #fcd34d; /* Yellow color for the button */
    --cta-button-text: #000000; /* Black color for button text */

    /* Font family is now scoped to the component */
    font-family: 'Inter', sans-serif;
    width: 100%;
    display: flex;
    position: relative;
    background-color: #fff; /* White background for the image side */
    overflow: hidden;
    background-color: var(--cta-bg-color);
	background-image: url(https://imraanhoosen.com/Test/wp-content/uploads/2025/07/CTA.png); 
	background-size:cover;
	height:70vh;
}

/* Wrapper for the image on the left */
.cta-image-wrapper {
    flex: 0 0 50%;
    position: relative;
    align-self: stretch;
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Wrapper for the content on the right (the green, angled part) */
.cta-content-wrapper {
    flex: 1;
    color: var(--cta-text-color);
    position: relative;
    align-self: stretch;
    margin-left: -16%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
}

/* This pseudo-element adds the subtle "get started" text pattern in the background */
.custom-cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
}

.custom-cta-section.image-position-right {
    flex-direction: row-reverse;
}

/* Container for the text and button */
.cta-content {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 4rem 5rem 4rem calc(18% + 3rem);
   }

/* HEADING TYPOGRAPHY */
.cta-content h2 {
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    color: var(--cta-text-color);
    margin: 0 0 24px 0;
}

/* PARAGRAPH TYPOGRAPHY */
.cta-content p {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: var(--cta-text-color);
    margin: 0 0 42px 0;
}

/* NEW: Wrapper for the buttons */
.cta-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 16px; /* This creates the space between buttons */
}

/* BUTTON TYPOGRAPHY */
.cta-button {
    display: inline-block;
    width: 155px;
    height: 48px;
    box-sizing: border-box;
    background-color: var(--cta-button-bg);
    color: var(--cta-button-text);
    padding: 0 20px;
    border-radius: 50px;
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*  ====================== CUSTOM CSS ===================== */
.cta-image-wrapper .cta-content-wrapper{
    	position: absolute !important;
    	top: 0 !important;
    	width: 100% !important;
    	height: 100% !important;
    	background-size: cover !important;
    	background-position: center !important;
}

#chatus .cta-image-wrapper{
	z-index: 2 !important;
	clip-path: polygon(0 0, 70% 0, 55% 100%, 0% 100%) !important;
}


 .cta-content-wrapper {  
	padding: 6rem 4rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    background-color: var(--plan-bg-color);
    box-sizing: border-box !important;
    margin-left: -13% !important;
}

 .cta-content {
	 	padding: 64px 80px 64px calc(15% + 0px) !important;
 } 


#overlapsection .cta-component-wrapper {
  display: flex !important;
  align-items: center !important;
  background-color: #f5f5f5 !important;
}

#overlapsection .cta-content {
     padding: 64px 80px 64px calc(28% + 0px) !important; 
}

#overlapsection .cta-image-wrapper {
  flex: 0 0 45% !important;
  position: relative !important;
  z-index: 3 !important;
}

#overlapsection .cta-image-wrapper img {
  width: 100% !important;
  height: 100% !important; 
  display: block !important;
  object-fit: cover !important;
 }

.faq-question-text {
   		margin-left: 72px !important;
}

	.faq-icon {
   		 margin-left: 30px !important;
}

	.elementor-26 .elementor-element.elementor-element-f7020e8 .faq-heading {
   		 text-align: center !important;
	}

	.faq-answer {
   		 margin-left: 89px !important;
	}

	.pps-pricing-details .pps-price-label, .pps-pricing-details .pps-billing-info {
    	font-style: normal !important;
    	font-weight: 500 !important;
    	font-size: 0.9em !important;
    	text-align: center !important;
	}

	.atc-component .atc-tab-content-inner {
    	align-items: flex-start !important;
	}

	.tcs-slide-number {
    	width: 56px !important;
    	height: 56px !important;
    	font-weight: 700 !important;
    	font-size: 28px !important;
		background-color:#E27761 !important;
		font-family: 'Space Mono', monospace !important;
}

	.swiper-slide-active .tcs-slide-number {
 	background-color:#E27761 !important;
	}

	.tcs-active-slide-title {
    	font-family: 'Inter', sans-serif !important;
    	font-style: normal !important;
    	font-weight: 700 !important;
    	font-size: 22px !important;
    	text-align: center !important;
		margin-bottom: 72px !important;
		margin-top:0px !important;
   }

	.tcs-content-container .tcs-card-content{
		box-shadow: 0px 1.51px 1.51px rgba(70, 80, 78, 0.25) !important;
	}

/*     TEAM Section  */

.plan-text-inner-wrapper {
    max-width: 603px !important;
	padding-left:135px !important;
}

.plan-card-pricing-section{
	margin-top:-2px !important;
}

.plan-section-wrapper{
		position: relative !important;
        overflow: hidden !important;	
}

 .plan-text-container, .plan-visual-container {
      position: absolute !important;
      top: 0 !important;
	  width: 100% !important;
      height: 100% !important;
      background-size: cover !important;
      background-position: center !important;
    }

.plan-text-container{
	  background-size: cover !important;
      background-position: center !important;
      z-index: 1 !important;
    }

    .plan-visual-container   {
      background-color: #cc5500 !important;
      background-image: linear-gradent(45deg, #cc5500, #ff6600) !important;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
      z-index: 2 !important;
      clip-path: polygon(65% 0, 100% 0, 100% 100%, 50% 100%) !important;
    }


/* Tablet */
@media (max-width: 1024px) {
  .cta-content {
    padding: 0px !important; 
    max-width: 70% !important;
	margin-left: 11% !important;
	}
	
	.plan-text-inner-wrapper {
   	 padding-left: 0px !important; /* Tablet */
  }
	.plan-text-inner-wrapper {
    	max-width: 360px !important;
   }
	.ts3-content {
    	width: 54% !important;
	}
}

@media (max-width: 992px) {
    .atc-component .atc-right-column {
        margin-top: 0px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
  .cta-content {
     padding: 0px !important; 
     max-width: 100% !important;
	  margin-left: 0px !important;
	}
	
	#overlapsection .cta-content {
     padding: 0px !important; */
}
	
.cta-content-wrapper, .cta-image-wrapper  {
    	clip-path: none !important;
		margin-left: 0px !important;
   }
	
.plan-text-inner-wrapper {
    	padding-left: 0px !important; /* Mobile */
  	}
	
	.faq-icon {
    	margin-left: 20px !important;
	}

	.faq-question-text {
   		 margin-left: 25px !important;
	}

	.faq-answer {
    	margin-left: 29px !important;
	}
	
	.elementor-26 .elementor-element.elementor-element-b976d08 .tcs-heading {
    font-size: 30px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 22px !important;
	}
	
	.elementor-26 .elementor-element.elementor-element-b976d08 .tcs-slide-number {
    	font-size: 20px !important;
		width:42px !important;
		height:42px !important;
    }
	.elementor-26 .elementor-element.elementor-element-b976d08 .tcs-content-container {
    	padding: 30px 0px 30px 0px !important;
	}
	
	.tcs-active-slide-title {
        	font-size: 18px !important;    
    		margin-bottom: 30px !important;
   	}
	
	.tcs-content-container{
        width: 90% !important;    
    	overflow: hidden !important;
	}
	
	  .split {
        	width: 100% !important;
        	height: auto !important;
        	padding-top: 56.25% !important;
      }
     
	.plan-text-container, .plan-visual-container {
        	position: relative !important;
        	width: 100% !important;
        	height: auto !important;
       	 clip-path: none !important;
        	left: 0 !important;
      }

  .cta-component-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
	background-size: cover;
	
  }
	
	#overlapsection .cta-content-wrapper {
		padding:0px;
	}

  .custom-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .cta-image-wrapper img {
    height: auto;
  }

  .cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 250px;
  }

}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
  .ts3-container {
    flex-direction: column !important; /* ✅ Stack in one column */
  }

  .ts3-content,
  .ts3-bg-side {
    width: 100% !important;            /* ✅ Full width */
    padding: 15px !important;          /* Optional: spacing */
  }

  .ts3-bg-image {
    width: 100% !important;
	height: auto !important;
    display: block !important;
  }
	
	.ts3-bg-side {
    position: relative !important;
    right: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.cta-content-wrapper {
     	margin-left: 0px !important; 
	}
	
	#overlapsection .cta-content {
    padding: 0px !important; 
}
	
}


/*  ====================== END CUSTOM CSS ===================== */

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

/* For tablets and smaller desktops */
@media (max-width: 1024px) {
    .custom-cta-section {
        min-height: auto;
    }
     .cta-content {
        padding: 3rem 4rem 3rem calc(22% + 2rem);
        max-width: 100%;
    }
  }

/* For mobile devices */
@media (max-width: 768px) {
    .custom-cta-section {
        flex-direction: column;
    }

    .cta-image-wrapper {
        display: none;
    }

    .cta-content-wrapper {
        width: 100%;
        margin-left: 0;
        clip-path: none;
        text-align: center;
        align-items: auto; /* Changed from 'center' to 'auto' to allow content to align left */
        padding: 80px 24px;
    }

    .cta-content {
        padding: 0px;
        text-align: center; /* Center text inside the content block */
    }

    .cta-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive button wrapper */
    .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }

    /* UPDATED MOBILE BUTTON STYLES */
    .cta-button {
        display: block;
        width: 100%; /* Full width on mobile */
        max-width: 400px; /* Optional: prevent button from being too wide on tablets */
        height: auto;
        line-height: 25px;
        padding: 14px 32px;
    }

    /* Responsive Font Sizes */
    .cta-content h2 {
        font-size: 40px;
        line-height: 48px;
    }
    .cta-content p {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Unique Wrapper with Encapsulated CSS Variables */
.cta-2-wrapper {
    /* CSS Variables are scoped to this container */
    /* Colors */
    --cta-2-color-primary-bg: #fdd65e;
    --cta-2-color-primary-bg-hover: #f59e0b;
    --cta-2-color-primary-text: #1f2937;
    --cta-2-color-secondary-border: #fdd65e;
    --cta-2-color-secondary-text: #fdd65e;
    --cta-2-color-secondary-bg-hover: white;
    --cta-2-color-secondary-text-hover: #000000;
    --cta-2-color-text-light: #e5e7eb;
    --cta-2-color-overlay: rgba(0, 0, 0, 0.6);

    /* Typography */
    --cta-2-font-family: 'Inter', sans-serif;
    --cta-2-heading-size-desktop: 3.75rem;
    --cta-2-heading-size-tablet: 3rem;
    --cta-2-heading-size-mobile: 2.25rem;
    --cta-2-description-size: 1.25rem;
    --cta-2-heading-weight: 800;
    --cta-2-button-weight: 400;

    /* Sizing & Radius */
    --cta-2-button-border-radius: 9999px; /* For fully rounded buttons */

    /* Component Styles */
    position: relative;
    width: 100%;
    overflow: hidden;
    color: white;
    font-family: var(--cta-2-font-family);
}

/* Specific Element Styling using unique names */
.cta-2-wrapper .cta-2-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-2-wrapper .cta-2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cta-2-color-overlay);
    z-index: 2;
}

.cta-2-wrapper .cta-2-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    /* Reduced padding for a tighter fit */
    padding: 6rem 2rem;
}

.cta-2-wrapper .cta-2-heading {
    font-style: italic;
    font-weight: 900;
    font-size: 90px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
	line-height: 90px;
}

.cta-2-wrapper .cta-2-description {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
}

.cta-2-wrapper .cta-2-button-group {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/*.cta-2-wrapper .cta-2-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--cta-2-button-border-radius);
    font-weight: var(--cta-2-button-weight);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
} */

.cta-2-wrapper .cta-2-button {
	display: inline-block;
    width: 165px;
    height: 48px;
    box-sizing: border-box;
    background-color: var(--cta-button-bg);
    color: var(--cta-button-text);
    padding: 0px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-2-wrapper .cta-2-button-secondary {
    background-color: var(--cta-2-color-primary-bg);
    color: var(--cta-2-color-primary-text);
}

.cta-2-wrapper .cta-2-button-secondary:hover {
    background-color: var(--cta-2-color-primary-bg-hover);
}

.cta-2-wrapper .cta-2-button:hover {
    transform: scale(1.05);
}

.cta-2-wrapper .cta-2-button-primary {
    background-color: var(--cta-2-color-primary-bg);
    color: var(--cta-2-color-primary-text);
}

.cta-2-wrapper .cta-2-button-primary:hover {
    background-color: var(--cta-2-color-primary-bg-hover);
}

/*.cta-2-wrapper .cta-2-button-secondary {
    background-color: transparent;
    color: var(--cta-2-color-secondary-text);
    border-color: var(--cta-2-color-secondary-border);
} 

.cta-2-wrapper .cta-2-button-secondary:hover {
    background-color: var(--cta-2-color-secondary-bg-hover);
    color: var(--cta-2-color-secondary-text-hover);
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-2-wrapper .cta-2-text-container {
        max-width: 100%; /* Allow full width on tablets and mobile */
    }
    .cta-2-wrapper .cta-2-heading {
        font-size: var(--cta-2-heading-size-tablet);
    }
    .cta-2-wrapper .cta-2-content {
        /* Adjusted padding for tablets */
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-2-wrapper .cta-2-heading {
        font-size: var(--cta-2-heading-size-mobile);
    }
    .cta-2-wrapper .cta-2-content {
        /* Adjusted padding for mobile */
        padding: 4rem 1rem;
    }
    .cta-2-wrapper .cta-2-button-group {
        flex-direction: column;
    }
    .cta-2-wrapper .cta-2-button {
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- Main Component Styles --- */
.promo-cta-3 {
    /* --- CSS Variables are scoped to this component --- */
    --bg-color: #2A463B;
    --text-color: #FFFFFF;
    --button-bg-color: #fdd65e;
    --button-text-color: #1A1A1A;
    --main-font: 'Inter', sans-serif;

    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--main-font);
    padding: 5rem 1.5rem; /* Vertical and horizontal padding */
    text-align: center;
    position: relative; /* Crucial for positioning the background image and content */
    overflow: hidden; /* Hides parts of the SVG that go outside */
    width: 100%; /* Makes the banner full-width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Background Image Styling --- */
.promo-cta-3-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover; /* Ensures the image covers the area */
    z-index: 1; /* Places it behind the content */
    pointer-events: none; /* Makes the image non-interactive */
}

/* --- Content Wrapper --- */
/* This wrapper ensures the content is centered and has a max-width for readability */
.promo-cta-3-content {
    position: relative;
    z-index: 2; /* Higher z-index to appear above the background image */
    max-width: 1320px;
    width: 100%;
}

/* --- Typography --- */
.promo-cta-3-heading {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    color: #FFFFFF;
    text-align: center;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.promo-cta-3-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    text-align: center;
    color: var(--text-color);
    margin: 0 auto 1.5rem auto;
}

/* --- Button --- */
.promo-cta-3-button {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.promo-cta-3-button:hover {
    transform: translateY(-2px);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .promo-cta-3 {
        padding: 4rem 1.5rem;
    }

    .promo-cta-3-heading {
        font-size: 48px; /* Scaled down for tablets */
        line-height: 1.2;
    }

    .promo-cta-3-text {
        font-size: 16px; /* Scaled down for tablets */
    }
}

@media (max-width: 480px) {
    .promo-cta-3 {
        padding: 3rem 1.5rem; /* Adjust padding for mobile */
    }

    .promo-cta-3-heading {
        font-size: 36px; /* Scaled down for mobile */
    }

    .promo-cta-3-text {
        font-size: 16px; /* Keep it readable on small devices */
    }

    /* --- On mobile, make the button full-width of the content area --- */
    .promo-cta-3-button {
        width: 100%; /* Button takes full width of its container */
        display: block; /* Change from inline-block to block */
        padding: 1rem;
    }
}

/* Component Wrapper */
.leadership-tabs-component {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
    overflow-x: hidden; /* Prevents horizontal scroll on the body */
}

.leadership-tabs-component .tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #F9F8F6;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.leadership-tabs-component .tabs-nav li {
    padding: 20px 15px;
    cursor: pointer;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #1F453D;
    position: relative;
    transition: all .3s ease-in-out;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px solid #D5D5D5;
}

.leadership-tabs-component .tabs-nav li.active {
    background-color: #20453D;
    color: #fff;
    border-bottom: 2px solid #2a5b53;
}

/* Styling for the tab content area */
.leadership-tabs-component .tab-content {
    display: none;
}

.leadership-tabs-component .tab-content.active {
    display: block;
}

/* Header section within each tab */
.leadership-tabs-component .tab-header {
    padding: 30px 20px;
    text-align: left; /* Changed to left alignment */
    max-width: 90%; /* Constrain width */
    margin: 0 auto; /* Center the container */
}

.leadership-tabs-component .tab-header h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    color: #00262B;
    margin-bottom: 15px;
    font-weight: 700;
}

.leadership-tabs-component .tab-header p {
    margin: 0; /* Changed from auto margin */
    line-height: 1.7;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    color: #000000;
}

/* Section for the image grid */
.leadership-tabs-component .image-grid-section {
    padding: 40px 20px;
    transition: background-color 0.5s ease;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Overlay for background image to ensure text readability */
.leadership-tabs-component .image-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Ensure content is above the overlay */
.leadership-tabs-component .image-grid,
.leadership-tabs-component .tab-button-container {
    position: relative;
    z-index: 2;
}


/* Image grid styling */
.leadership-tabs-component .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Adjusted min-width for mobile screenshots */
    gap: 25px;
    max-width: 90%;
    margin: 0 auto;
}

/* Specific grid styling for two columns */
.leadership-tabs-component .image-grid.grid-two-col {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 600px;
}

/* Individual card styling */
.leadership-tabs-component .grid-item a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-tabs-component .grid-item a:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.leadership-tabs-component .mobile-image-grid {
    display: none;
}

.leadership-tabs-component .grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Button container styling */
.leadership-tabs-component .tab-button-container {
    text-align: center;
    padding: 50px 20px 0;
}

/* Base button styling (for a tag) */
.leadership-tabs-component .tab-button {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #000000;
    border-radius: 35px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.leadership-tabs-component .tab-button:hover {
    transform: translateY(-2px);
}

/* Color-specific button styles */
.leadership-tabs-component .btn-yellow { background-color: #FDD65E; color: #111; }
.leadership-tabs-component .btn-yellow:hover { background-color: #e4b33a; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .leadership-tabs-component .tabs-nav {
        display: block; /* Stack tabs vertically */
        grid-template-columns: none; /* Override desktop grid */
    }
    .leadership-tabs-component .tabs-nav li {
        white-space: normal; /* Allow text to wrap */
        border-bottom: 1px solid #e5e7eb; /* Add separator */
    }
    .leadership-tabs-component .tabs-nav li.active {
        /* On mobile, the background color is the primary indicator. */
        /* The 3px border from desktop is overridden by the 1px separator for consistency. */
        border-bottom-color: #2a5b53;
    }
    .leadership-tabs-component .tabs-nav li:last-of-type {
        border-bottom: none; /* Remove separator from last item */
    }

    .leadership-tabs-component .tab-header {
        padding: 20px 15px;
    }
    .leadership-tabs-component .tab-header h1 {
        font-size: 2.2em;
    }
    .leadership-tabs-component .tab-header p {
        font-size: 1em;
    }
    .leadership-tabs-component .image-grid.grid-two-col {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .leadership-tabs-component .image-grid {
        display: none;
    }
    .leadership-tabs-component .mobile-image-grid {
        display: block;
        padding: 0 2rem;
    }
}

/* Component Wrapper */
.atc-component {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    border-radius: 15px;
    overflow: hidden;
}

/* Styling for the tab navigation */
.atc-component .atc-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 2px solid #E1DDD2;
}

.atc-component .atc-tabs-nav li {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    position: relative;
    color: #1D4F46;
    background-color: #f0f2f5;
    text-align: center;
    transition: all .3s ease-in-out;
    white-space: nowrap;
    border-bottom: 2px solid #E1DDD2;
}

.atc-component .atc-tabs-nav li.active {
    background-color: #20453D;
    color: #fff;
    border-bottom: 2px solid #20453D;
}

/* Styling for the tab content area */
.atc-component .atc-tab-content {
    display: none;
    padding: 40px;
}

.atc-component .atc-tab-content.active {
    display: block;
}

.atc-component .atc-tab-content-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Column Styling */
.atc-component .atc-left-column {
    flex: 1;
    min-width: 50%;
}

.atc-component .atc-left-column h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
	color:#00262B;
}

.atc-component .atc-left-column h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
	color:#00262B;
}

.atc-component .atc-left-column ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.atc-component .atc-left-column ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05em;
}

.atc-component .atc-left-column ul li::before {
    content: '•';
    color: #1D4F46;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
}

.atc-component .atc-cta-button {
    display: inline-block;
    background-color: #F0C14B;
    color: #111;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.atc-component .atc-cta-button:hover {
    background-color: #e4b33a;
    transform: translateY(-2px);
}

/* Right Column Styling */
.atc-component .atc-right-column {
    flex: 1;
    text-align: center;
}

.atc-component .atc-single-image-placeholder img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .atc-component .atc-tab-content-inner {
        flex-direction: column;
    }
    .atc-component .atc-right-column {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .atc-component .atc-tabs-nav {
        grid-template-columns: 1fr; /* Stack tabs vertically */
        border-bottom: none;
    }
    .atc-component .atc-tabs-nav li {
        white-space: normal;
        border-bottom: 1px solid #ddd;
        padding: 18px; /* Increase padding for better touch targets */
        font-size: 1.1em;
    }
    .atc-component .atc-tabs-nav li:last-child {
        border-bottom: none;
    }
    .atc-component .atc-left-column h1 {
        font-size: 2em;
    }
    .atc-component .atc-tab-content {
        padding: 30px 10px;
    }
}

/* Component Wrapper */
.ts-component {
    font-family: 'Inter', sans-serif;
    background-color: #1D4F46;
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
	background-image: url("https://imraanhoosen.com/Test/wp-content/uploads/2025/07/CTA.png");
}

/* Faint text background pattern */
.ts-component::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    z-index: 1;
}

.ts-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ts-main-heading {
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 40px;
}

/* Swiper Styles */
.ts-swiper-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 60px;
}

.ts-swiper-slide {
    text-align: center;
}

.ts-quote {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0 auto 40px auto; /* Increased margin for more space */
}

.ts-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-author-icon {
    background-color: #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0; /* Prevents icon from shrinking on smaller screens */
}

.ts-author-icon svg {
    width: 24px;
    height: 24px;
    fill: #1D4F46;
}

.ts-author-name {
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
}

/* Swiper Pagination */
.ts-pagination-container {
    /* Swiper positions this absolutely. The space is created by the parent's padding. */
    bottom: 20px !important; /* Ensures consistent vertical position */
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s, background-color 0.3s;
}

.swiper-pagination-bullet-active {
    background-color: #F0C14B;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ts-component {
        padding: 60px 20px;
    }
    .ts-main-heading {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    .ts-quote {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .ts-quote {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .ts-author-info {
        flex-direction: column; /* Stack author icon and name vertically on small screens */
    }
    .ts-author-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* Component Wrapper */
.pps-component {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; /* Lighter background for the whole section */
    padding: 80px 20px;
}

.pps-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pps-header h2 {
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    color: #00262B;
    margin-top: 0;
    margin-bottom: 15px;
}

.pps-header p {
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #000000;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Pricing Grid */
.pps-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch; /* Ensures grid items stretch to the same height */
}

.pps-plan-card {
    border-radius: 24px; /* Increased border radius */
    overflow: hidden;
    text-align: center; /* Center all text */
    color: #fff;
    display: flex;
    flex-direction: column;
}

.pps-card-top {
    padding: 40px 30px;
}

/* Exact colors from the image */
.pps-card-top { background-color: #3D68C2; }
.pps-card-top { background-color: #8B5CF6; }

.pps-card-top h3 {
    font-style: italic;
    font-weight: 900;
    font-size: 44px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.pps-card-top p {
    /* Upskill your team across multiple areas with access to the entire course library. */

    height: 76px;

    /* body desktop/reg */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    opacity: 0.9;
    margin: 0 auto;
    max-width: 418px;
}

.pps-card-bottom {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
}

.pps-card-bottom { background-color: #4A7EE8; }
.pps-card-bottom { background-color: #9B72F7; }

.pps-pricing-details {
    padding-bottom: 30px;
    position: relative;
    min-height: 155px; /* Set min-height for alignment */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Horizontal line */
.pps-pricing-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.pps-pricing-details .pps-price-label,
.pps-pricing-details .pps-billing-info {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.pps-pricing-details .pps-price {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    margin: 5px 0;
}

.pps-contact-sales h4 {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.pps-contact-sales p {
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 8px;
    opacity: 0.9;
}


.pps-features-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 40px auto; /* Center the list block */
    flex-grow: 1;
    text-align: left;
    display: inline-block;
}

.pps-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}

.pps-features-list svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    fill: #ffffff;

}

.pps-apply-button {
    display: inline-block;
    width: 140px; /* Set fixed width for desktop */
    background-color: #fed55e;
    color: #1F2937;
    padding: 12px 0; /* Vertical padding only */
    font-weight: 400; /* Regular font weight */
    text-align: center;
    text-decoration: none;
    border-radius: 999px; /* Pill shape */
    transition: background-color 0.3s, transform 0.2s, width 0.3s;
    margin-top: auto;
}

.pps-apply-button:hover {
    background-color: #FBBF24;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pps-pricing-grid {
        grid-template-columns: 1fr;
    }
    .pps-header h2 {
        font-size: 2.2em;
    }
    .pps-pricing-details {
        min-height: auto;
    }
    .pps-apply-button {
        display: block; /* Make button full width on mobile */
        width: 100%;
    }
    .pps-features-list li {
        align-items: self-start;
    }
}
@media (max-width: 480px) {
    .pps-header h2 {
        font-size: 1.8em;
    }
    .pps-header p {
        font-size: 1em;
    }
    .pps-pricing-details .pps-price {
        font-size: 3em;
    }
}

/* Unique Wrapper with Encapsulated CSS Variables */
.plan-section-wrapper {
    /* CSS Variables scoped to this component */
    --plan-font-family: 'Inter', sans-serif;
    --plan-bg-color: #f8f9fa;
    --plan-heading-color: #00262B;
    --plan-text-color: #000000;
    --plan-card-bg-top: #6c63ff;
    --plan-card-bg-bottom: #574ae2;
    --plan-card-text-color: white;

    /* Component Styles */
    font-family: var(--plan-font-family);
    width: 100%;
    display: flex;
    position: relative; /* Crucial for absolute positioning of the card */
    box-sizing: border-box;
    min-height: 800px; /* Increased height */
}

/* Left Column: Text Content */
.plan-text-container {
    flex-basis: 60%; /* Set width to 60% */
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align content to the left */
    background-color: var(--plan-bg-color);
    box-sizing: border-box;
}

.plan-text-inner-wrapper {
    max-width: 500px; /* Constrains the width of the text block */
}

.plan-heading {
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    color: var(--plan-heading-color);
    line-height: 1.2;
}

.plan-description {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    color: var(--plan-text-color);
    margin-top: 1.5rem;
}

/* Right Column: Visuals (Image Background) */
.plan-visual-container {
    flex-basis: 40%; /* Set width to 40% */
    position: relative;
}

.plan-section-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

/* Centered Pricing Card Container */
.plan-card-container {
    position: absolute;
    top: 50%;
    left: 65%; /* Positioned at the 60% mark to be centered on the divide */
    transform: translate(-50%, -50%); /* This centers the element */
    z-index: 10;
    width: 90%;
    max-width: 390px;
    height: 77%; /* Set container height to 80% of the section */
}

.plan-card {
    color: var(--plan-card-text-color);
    border-radius: 1rem;
    width: 100%;
    height: 100%; /* Make card fill the container's height */
    display: flex; /* Use flexbox to distribute content vertically */
    flex-direction: column;
}

.plan-card-header {
    padding: 2rem 1.5rem 2rem 1.5rem;
    background-color: var(--plan-card-bg-top);
    border-radius: 2rem 2rem 0 0;
}

.plan-card-title {
    font-style: italic;
    font-weight: 900;
    font-size: 44px;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
}

.plan-card-subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0.75rem;
    opacity: 0.9;
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
}

.plan-card-pricing-section {
    background-color: var(--plan-card-bg-bottom);
    padding: 2rem;
    text-align: center;
    flex-grow: 1; /* Allow this section to grow and fill space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    border-radius: 0 0 2rem 2rem;
}

.plan-card-pricing-section .starts-at {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
}

.plan-card-pricing-section .price {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #FFFFFF;
    margin: 0.5rem 0;
    line-height: 1;
}

.plan-card-pricing-section .billing-info {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #FFFFFF;
}

.plan-card-pricing-section .billed-annually-container {
    padding-bottom: 1rem;
    margin-top: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-card-pricing-section .billed-annually {
    font-size: 0.875rem;
    opacity: 0.8;
}

.plan-card-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.plan-card-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
}

.plan-card-feature-item svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    fill: #ffffff;
}


.plan-apply-button {
    display: inline-block;
    width: 140px; /* Set fixed width for desktop */
    background-color: #FCD34D;
    color: #1F2937;
    padding: 12px 0; /* Vertical padding only */
    font-weight: 400; /* Regular font weight */
    text-align: center;
    text-decoration: none;
    border-radius: 999px; /* Pill shape */
    transition: background-color 0.3s, transform 0.2s, width 0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
}

.plan-apply-button:hover {
    background-color: #FBBF24;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .plan-section-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    .plan-text-container {
        padding: 4rem 2rem 8rem 2rem; /* Add bottom padding to avoid overlap */
        text-align: center;
        align-items: center; /* Center content on smaller screens */
        flex-basis: auto; /* Reset flex-basis */
    }
    .plan-visual-container {
        flex-basis: auto; /* Reset flex-basis */
        height: 400px; /* Give the image a fixed height */
        clip-path: none; /* Remove the curve on smaller screens */
    }
    .plan-card-container {
        position: relative; /* Change from absolute */
        left: auto;
        top: auto;
        transform: none; /* Reset transform */
        margin: -6rem auto 0 auto; /* Negative margin pulls it up */
        height: auto; /* Let content define height on mobile */
    }
}

@media (max-width: 480px) {
    .plan-heading {
        font-size: 2.5rem;
    }
    .plan-text-container {
        padding: 3rem 1rem 7rem 1rem;
    }
    .plan-visual-container {
        height: 350px;
    }
    .plan-card-container {
        margin-top: -5rem;
    }
}

/* Unique Wrapper with Encapsulated CSS Variables */
.faq-section-wrapper {
    /* CSS Variables */
    --faq-font-family: 'Inter', sans-serif;
    --faq-bg-color: #f5f1ec;
    --faq-heading-color: #00262B;
    --faq-text-color: #00262B;
    --faq-border-color: #d1d5db; /* Bolder border color */

    /* Component Styles */
    font-family: var(--faq-font-family);
    background-color: var(--faq-bg-color);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.faq-content-container {
    width: 100%;
    max-width: 1100px;
}

.faq-heading {
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    line-height: 68px;
    color: var(--faq-heading-color);
    text-align: left; /* Changed to left alignment */
    margin-bottom: 4rem;
}

.faq-accordion-item {
    border-bottom: 2px solid var(--faq-border-color); /* Thicker border */
}

/* Changed from button to div */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Align items to the start */
    align-items: self-start;
    padding: 1.5rem 0;
    cursor: pointer;
    text-align: left;
}

.faq-question-text {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    color: var(--faq-text-color);
    margin-left: 1rem; /* Margin to space from icon */
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none; /* Hidden by default */
    padding: 0 0 1.5rem 2.5rem; /* Add left padding to align with question text */
    color: var(--faq-text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-section-wrapper {
        padding: 4rem 1.5rem;
    }
    .faq-question-text {
        font-size: 18px;
    }
    .faq-heading {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

/* Unique Wrapper with Encapsulated CSS Variables */
.tcs-section-wrapper {
    --tcs-font-family: 'Inter', sans-serif;
    --tcs-bg-color: #111827;
    --tcs-heading-color: white;
    --tcs-accent-color: #F97316;

    font-family: var(--tcs-font-family);
    position: relative;
    background-color: var(--tcs-bg-color);
    overflow: hidden;
}

/* HTML Background Image */
.tcs-background-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
}

/* CSS Overlay */
.tcs-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.7));
    z-index: 2;
}

.tcs-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 12px 0px 16px;
    overflow: hidden; /* Ensure container doesn't cause scroll */
}

.tcs-heading {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    color: var(--tcs-heading-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* Swiper Container with overflow hidden */
.tcs-swiper-container {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 20px;
}

.tcs-swiper-container .swiper-wrapper {
    display: flex;
    align-items: center;
}

.tcs-swiper-container .swiper-slide {
    position: relative;
    overflow: visible;
}

/* Numbered circle */
.tcs-slide-number {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--tcs-accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 20;
    border: 3px solid var(--tcs-bg-color);
}

/* Card container */
.tcs-card-content {
    border-radius: 0.75rem;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tcs-card-image {
    object-fit: cover;
    display: block;
}


/* Title for active slide */
.tcs-active-slide-title {
    color: var(--tcs-heading-color);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    padding: 0 1rem;
    min-height: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

/* Pagination styling */
.tcs-pagination-container {
    position: relative;
    width: 100%;
    text-align: center;
}
.tcs-pagination-container .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.6;
    width: 10px;
    height: 10px;
    margin: 0 6px;
}
.tcs-pagination-container .swiper-pagination-bullet-active {
    background-color: var(--tcs-accent-color);
    opacity: 1;
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    .tcs-heading {
        font-size: 2.5rem;
    }
    .tcs-content-container {
        padding: 2rem;
    }
}

/* Unique Wrapper with Encapsulated CSS Variables */
.ts2-section-wrapper {
    --ts2-font-family: 'Inter', sans-serif;
    --ts2-bg-color: #FFFFFF;
    --ts2-heading-color: #00262B;
    --ts2-card-bg-color: #F9F9F9;
    --ts2-card-border-color: #EEEEEE;
    --ts2-text-primary: #000000;
    --ts2-text-secondary: #000000;
    --ts2-link-color: #000000;

    font-family: var(--ts2-font-family);
    background-color: var(--ts2-bg-color);
    padding: 6rem 2rem;
    overflow: hidden;
}

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

.ts2-heading {
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    line-height: 68px;

    color: var(--ts2-heading-color);
    margin-bottom: 2rem;
}

/* Swiper Styles for Desktop */
.ts2-swiper-container {
    width: 100%;
    padding: 1rem 0;
    overflow: hidden;
}

.ts2-swiper-container .swiper-slide {
    height: auto;
}

.ts2-swiper-container .swiper-wrapper {
    align-items: stretch;
}

/* Testimonial Card Styles */
.ts2-card {
    background-color: var(--ts2-card-bg-color);
    border: 1px solid var(--ts2-card-border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.ts2-card-category {
    font-style: normal;
    font-weight: 800;
    font-size: 16px !important;
    line-height: 20px;
    leading-trim: both;
    text-edge: cap;
    letter-spacing: 0.25em !important;
    text-transform: uppercase;
    color: var(--ts2-text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ts2-card-quote {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: var(--ts2-text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.ts2-card-author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ts2-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #3D4C5C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ts2-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ts2-author-avatar svg {
    width: 60%;
    height: 60%;
    color: white;
}

.ts2-author-details {
    line-height: 1.4;
}

.ts2-author-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--ts2-text-primary);
}

.ts2-author-title {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--ts2-text-secondary);
}

.ts2-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ts2-card-border-color);
}

.ts2-case-study-link {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: var(--ts2-link-color);
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .ts2-heading {
        font-size: 2.5rem;
        text-align: left;
    }
    .ts2-section-wrapper {
        padding: 4rem 1.5rem;
    }
    .ts2-swiper-container {
        display: none;
    }
    .ts2-mobile-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .ts2-card-footer {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    .ts2-card-author-section {
        align-items: self-start;
        gap: 1rem;
        margin-top: 1rem;
        flex-direction: column;
    }
}

.ts2-mobile-list {
    display: none;
}


/* Unique Wrapper with Encapsulated CSS Variables */
.lf-section-wrapper {
    --lf-font-family: 'Inter', sans-serif;
    --lf-heading-color: white;
    --lf-text-color: #ffffff; /* Light gray for text */
    --lf-card-bg-color: white;
    --lf-input-border-color: #e5e7eb;
    --lf-input-focus-border-color: #fca5a5;
    --lf-legal-text-color: #6b7280;
    --lf-button-bg-color: #fcd34d; /* Yellow */
    --lf-button-bg-hover-color: #fbbf24;
    --lf-button-text-color: #1f2937;
    --lf-overlay-color: #00262B; /* Dark teal overlay */

    font-family: var(--lf-font-family);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.lf-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.lf-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lf-overlay-color);
    z-index: 2;
}

.lf-content-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 3;
}

.lf-heading {
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    color: var(--lf-heading-color);
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

/* Style for the non-italic part of the heading */
.lf-heading .lf-heading-normal {
    font-style: normal;
}

.lf-subheading {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: var(--lf-text-color);
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.lf-form-card {
    background-color: var(--lf-card-bg-color);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    text-align: left;
}

.lf-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
input[type=email].lf-input-field, input[type=tel].lf-input-field, input[type=text].lf-input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--lf-font-family);
    border: 1px solid var(--lf-input-border-color);
    border-radius: 0.5rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

input[type=email].lf-input-field:focus, input[type=tel].lf-input-field:focus, input[type=text].lf-input-field:focus {
    outline: none;
    border-color: var(--lf-input-focus-border-color);
    box-shadow: 0 0 0 2px rgba(252, 165, 165, 0.4);
}

.lf-legal-text {
    font-size: 0.875rem;
    color: var(--lf-legal-text-color);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.lf-submit-button {
    display: inline-block;
    width: 100%;
    background-color: var(--lf-button-bg-color);
    color: var(--lf-button-text-color);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lf-submit-button:hover {
    background-color: var(--lf-button-bg-hover-color);
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .lf-section-wrapper {
        padding: 4rem 1.5rem;
    }
    .lf-heading {
        font-size: 2.5rem;
    }
    .lf-form-grid {
        grid-template-columns: 1fr; /* Stack fields in a single column */
    }
    .lf-content-container {
        text-align: center;
    }
}

.es-section-wrapper {
    --es-font-family: 'Inter', sans-serif;
    --es-bg-color: #2a463d; /* Dark Green */
    --es-heading-color: white;
    --es-text-color: #d1d5db;
    --es-input-bg-color: white;
    --es-input-text-color: #374151;
    --es-button-bg-color: #fcd34d; /* Yellow */
    --es-button-bg-hover-color: #fbbf24;
    --es-button-text-color: #1f2937;

    font-family: var(--es-font-family);
    background-color: var(--es-bg-color);
    display: flex;
    overflow: hidden;
}

.es-content-container {
    flex: 1.5; /* Give more space to content */
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.es-heading {
    font-style: italic;
    font-weight: 900;
    font-size: 60px;
    color: var(--es-heading-color);
    line-height: 1.2;
    margin: 0 0 2rem 0;
    max-width: 15ch; /* Limit characters per line */
}

.es-form-container {
    display: flex;
    background-color: var(--es-input-bg-color);
    border-radius: 9999px; /* Pill shape */
    padding: 0.5rem;
    max-width: 500px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

input[type=email].es-email-input {
    flex-grow: 1;
    border: none;
    background: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--es-input-text-color);
    font-family: var(--es-font-family);
}

.es-email-input:focus {
    outline: none;
}

.es-submit-button {
    background-color: var(--es-button-bg-color);
    color: var(--es-button-text-color);
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.es-submit-button:hover {
    background-color: var(--es-button-bg-hover-color);
}

.es-unsubscribe-text {
    color: var(--es-text-color);
    margin-top: 1rem;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.es-image-container {
    flex: 1;
    position: relative;
}

.es-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}


/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .es-section-wrapper {
        flex-direction: column;
    }
    .es-content-container {
        padding: 4rem 1.5rem;
        text-align: center;
        align-items: center;
    }
    .es-heading {
        font-size: 2.5rem;
        max-width: none;
    }
    .es-image-container {
        display: none; /* Hide image on mobile */
    }
}

/* Reset and Base Styles */
.ts3-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Container */
.ts3-container {
    font-family: 'Inter', sans-serif;
    background-color: #F3F1ED;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Background Section */
.ts3-bg-side {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.ts3-bg-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

/* Content Section */
.ts3-content {
    width: 60%;
    max-width: 800px;
    padding: 80px;
    position: relative;
    z-index: 2;
}

/* Testimonial Styling */
.ts3-testimonial {
    position: relative;
}

.ts3-quote-icon {
    font-size: 60px;
    color: #3498db;
    line-height: 0;
    margin-bottom: 30px;
    font-family: Georgia, serif;
}

.ts3-testimonial h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    color: #1F453D;
    line-height: 1.2;
    margin-bottom: 30px;
}

.ts3-testimonial h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    color: #1F453D;
    line-height: 1.2;
    margin-bottom: 30px;

.ts3-author {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    color: #000000;
    margin-bottom: 5px;
}

.ts3-position {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 30px;
}

.ts3-read-more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 48px;
    border-radius: 34px;
    background-color: #fed55e;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    text-decoration: none;
}

/* Swiper Modifications */
.ts3-swiper {
    overflow: visible !important;
}

.ts3-swiper-pagination {
    position: relative !important;
    margin-top: 40px;
    text-align: left;
}

.ts3-swiper-pagination .swiper-pagination-bullet {
    background: #bdc3c7;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 8px !important;
}

.ts3-swiper-pagination .swiper-pagination-bullet-active {
    background: #3498db;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .ts3-content {
        width: 65%;
        padding: 60px;
    }

    .ts3-bg-side {
        width: 35%;
    }
}

@media (max-width: 992px) {
    .ts3-container {
        flex-direction: column;
    }

    .ts3-content {
        width: 100%;
        padding: 60px 40px;
    }

    .ts3-bg-side {
        display: none; /* Hide background image on mobile */
    }
}

@media (max-width: 768px) {
    .ts3-read-more {
        width: 100%;
    }
    .ts3-container {
        min-height: 100%;
    }
    .ts3-content {
        padding: 50px 30px;
    }

    .ts3-testimonial h1 {
        font-weight: 700;
        font-size: 22px;
        line-height: 31px;
    }
}

@media (max-width: 576px) {
    .ts3-content {
        padding: 40px 20px;
    }

    .ts3-testimonial h1 {
        font-size: 22px;
    }

    .ts3-quote-icon {
        font-size: 50px;
        margin-bottom: 20px;
    }
}