* {
    margin: 0;
     padding: 0;
       box-sizing: border-box;
}

body {

	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   	line-height   : 1.6;
   	 color: #2c3e50;
     background: #ffffff;
	}

.main-navigation {
 background: #1a1a2e;
   padding     :1.2rem 0;
    position: sticky;
    top: 0;
  z-index    :     1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-wrapper-content {
   max-width: 1200px;
        margin: 0 auto;
    padding: 0 20px;
   display: flex;
    justify-content: space-between;
   align-items: center;
}

.branding-section .site-logo-link {
  display: block;
}

.primary-logo-img {
  filter: brightness(0) invert(1);
  height: 45px;
   width: auto;
}

.mobile-nav-trigger {
   display: none;
  background: none;
   border: none;
          cursor: pointer;
  flex-direction: column;
      gap: 5px;
}

.burger-line {
   width     :  25px;
    height:      3px;
   background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-nav-trigger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-trigger.active .burger-line:nth-child(2) {
      opacity: 0;
	}

.mobile-nav-trigger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links-container {
   gap: 2rem;
    display: flex;
}

.nav-item-link {
   color: #ecf0f1;
   text-decoration: none;
  font-size: 1rem;
               font-weight: 500;
	transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-item-link:hover,
.nav-item-link.active-page {
	   color: #3498db;
	}

.hero-main-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 20px;
  color: #ffffff;
}

.hero-content-wrapper{
    max-width: 1200px;
  margin: 0 auto;
      display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}


.hero-text-block {
   padding-right: 20px;
}

.primary-hero-heading {
  margin-bottom: 1.5rem;
    font-size: 3rem;
   font-weight: 700;
    line-height: 1.2;
}

.hero-description-text {
   font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-cta-section {
    display: flex;
	         gap: 1rem;
}

.primary-action-btn,
.secondary-action-btn {
	padding: 15px 35px;
          border-radius    :     8px;
    text-decoration: none;
   font-weight   :       600;
   transition : all 0.3s;
   display: inline-block;
}

.primary-action-btn {
     background: #ffffff; 
	      color: #667eea;}

.primary-action-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.secondary-action-btn {
	background: transparent;
   color: #ffffff;
   border: 2px solid #ffffff;
}

.secondary-action-btn:hover {
  background: rgba(255,255,255,0.1);


}

.hero-visual-block {
    position: relative; 

}

.hero-primary-image {
   width:      100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.methodology-showcase-area  
  {
   padding    :  80px 20px;

   background: #f8f9fa;
}

.section-content-container{

	   max-width: 1200px;
  margin: 0 auto;}

.section-main-title {
    font-size: 2.5rem;
    text-align: center;
        margin-bottom: 1rem;
   color:   #1a1a2e;
}

.section-intro-paragraph {
       max-width: 700px;
	margin-right :     auto;
  margin-bottom: 3rem;
				 color   : #6c757d;
  margin-left :  auto;
                    font-size: 1.1rem;
   text-align :      center;
}

.methodology-grid-layout
	{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-card-item {
   background: #ffffff;
   border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.method-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-visual-wrapper {
    height: 220px;
   overflow: hidden;
}

.method-card-img {
   width: 100%;
     height: 100%;
          object-fit: cover; 

}

.method-card-heading {
   font-size: 1.5rem;
   padding: 20px 20px 10px;
   color: #2c3e50;
}

.method-card-description{
	padding: 0 20px 20px;
   color: #6c757d;
   line-height: 1.7;
}

.programs-offering-section {
   padding: 80px 20px;
   background  :   #ffffff;
} 

.programs-display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
   margin-top: 3rem;
}

.program-option-card    {
   transition: all 0.3s;
    position: relative;
   border: 2px solid #e9ecef;
   border-radius: 12px;
   padding: 40px 30px;
   background: #f8f9fa;
}

.program-option-card:hover {


  border-color     :    #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
	
     }

.featured-program {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.featured-badge-label  {
	background: #ffd700;
  color: #1a1a2e;
         padding: 5px 15px;
   border-radius: 20px;
          font-size: 0.85rem;
  font-weight     :  600;
  display: inline-block;
   margin-bottom   :    15px;
}

.program-title-text

{

	    font-size: 1.8rem;
                    margin-bottom: 1rem;

}

.featured-program .program-title-text


{

	    color: #ffffff;

}

.program-details-text {
    margin-bottom: 1.5rem;
	line-height: 1.7;
}

.featured-program .program-details-text {

	  color: rgba(255,255,255,0.95);


}

.program-features-listing {
   list-style: none;
   margin-bottom: 2rem;
}

.feature-item-entry {
   padding: 10px 0;
    padding-left: 25px;
   position: relative;
}

.feature-item-entry:before {
  content: '✓';
  position: absolute;
   left: 0;
   color: #667eea;
    font-weight: bold;
}

.featured-program .feature-item-entry:before 
 {
	  color: #ffd700;

}

.program-cta-button {
   display: block;
   width    :100%;
  padding: 15px;
   background: #667eea;
  color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
   transition: all 0.3s;
}


.program-cta-button:hover {
  background: #5568d3;
  transform: translateY(-2px);
}  

.featured-program .program-cta-button {
  background: #ffffff;
    color: #667eea;
}

.featured-program .program-cta-button:hover {
   	background  :#f8f9fa;}

.transformation-showcase {
  padding: 80px 20px;
   background: #f8f9fa;
}

.transformation-content-split		{
  display: grid; 
	  grid-template-columns: 1fr 1fr; 
	               gap: 50px; 
	   align-items: center;
}

.transformation-featured-img {
  width: 100%; 
    border-radius    :    12px; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.transformation-heading-main {
  font-size: 2.2rem;
   margin-bottom:  1.5rem;
   color :     #1a1a2e;
}

.transformation-paragraph-text {
  margin-bottom: 1.2rem;
  line-height: 1.8;
   color: #6c757d;
}

.transformation-link-btn {
    display: inline-block;
    margin-top: 1rem;
   padding: 12px 30px;
	background: #667eea;
   color: #ffffff;
	 text-decoration: none;
  border-radius:       8px;
    font-weight: 600;
   transition    :      all 0.3s;
}

.transformation-link-btn:hover   {
  transform: translateY(-2px);
    background     :       #5568d3;
}

.cta-conversion-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 20px;
       text-align     :        center;
  color: #ffffff;
}

.cta-inner-container {
		 max-width: 800px;
    margin: 0 auto;
}

.cta-banner-heading {
   font-size: 2.8rem;
   margin-bottom: 1.5rem;
}

.cta-banner-subtext  
  {
  font-size: 1.2rem;
   margin-bottom: 2.5rem;
        opacity: 0.95;
    line-height: 1.7;
	}

.cta-banner-action-btn {
  display :        inline-block;

	     padding: 18px 45px;

	   background :       #ffffff;

	   color: #667eea;

	    text-decoration: none;

	  border-radius: 8px;

	   font-weight: 700;

		font-size: 1.1rem;

	  transition: all 0.3s;
}

.cta-banner-action-btn:hover {
   background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-form-section {
   padding: 80px 20px;
  background     :     #ffffff;
}

.contact-intro-text {


  text-align: center;
    color: #6c757d;
   margin-bottom: 3rem;
    font-size  :1.1rem;


}

.main-contact-form {
	max-width: 800px;
  margin: 0 auto 3rem;
					background: #f8f9fa;
   padding: 40px;
        border-radius: 12px;
}

.form-row-group {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin-bottom: 20px;
}

.form-field-wrapper {
               display: flex; 
	   flex-direction  :       column;
}

.field-label-text {
  font-weight: 600;
    color: #2c3e50;
   margin-bottom: 8px;
}

.form-input-field,
.form-select-field,
.form-textarea-field {
  padding: 12px 15px; 
    border: 2px solid #dee2e6; 
  border-radius: 8px; 
   font-size: 1rem; 
   font-family: inherit; 
  transition: border-color 0.3s;

}


.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {

		outline: none;
    border-color: #667eea; 

     }

.form-textarea-field {
  resize    : vertical;
}

.form-submit-btn {
   width: 100%;
    padding: 15px;
    background: #667eea;
    color: #ffffff;
    border: none;
                    border-radius: 8px;
        font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
	 transition: all 0.3s;
}

.form-submit-btn:hover {
	background: #5568d3;
  transform: translateY(-2px);
}

.contact-info-block {
   max-width: 800px;
  margin  : 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap :    30px; 

}

.info-item-element {
    text-align: center;
                    padding: 30px;
    background:     #f8f9fa;
    border-radius: 10px;
}

.info-item-heading {
    font-size: 1.3rem;
  margin-bottom: 10px;
  color: #667eea;
}


.info-item-content {
  color: #6c757d;
	line-height :    1.7;
	
}

.site-main-footer {
  background: #1a1a2e;

 color: #ecf0f1;

    padding:        60px 20px 20px;
}

.footer-content-wrapper {
   max-width: 1200px;
   margin: 0 auto; 

}

.footer-column-grid
{
    margin-bottom: 40px;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
 display: grid;
	gap: 40px;
}

.footer-logo-img {
   height : 50px;
  width: auto;
   margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-company-desc {

	color: #bdc3c7;
   line-height: 1.7;
	}

.footer-column-title {
    font-size: 1.2rem;
  margin-bottom: 15px;
   color:        #ffffff;
}

.footer-links-list {
	list-style: none;
}

.footer-links-list li
	{
    margin-bottom: 10px;
}

.footer-link-item {
    color: #bdc3c7;
   text-decoration: none;
    transition: color 0.3s;
}

.footer-link-item:hover {
      color: #3498db;

}

.footer-contact-detail {
	color: #bdc3c7;
	margin-bottom    :  10px;
   line-height  :    1.7;

}

.footer-bottom-bar {
  border-top: 1px solid #34495e;
   padding-top: 20px;
    text-align: center;
}

.copyright-text {
    color: #95a5a6;
  font-size  :        0.95rem; 
	
}@media (max-width: 768px) {
    .mobile-nav-trigger {
        display: flex;
    }

    .nav-links-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        display: none;
    }

    .nav-links-container.active {
        display: flex;
    }

    .nav-item-link {
        padding: 15px 0;
        border-bottom: 1px solid #34495e;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .primary-hero-heading {
        font-size: 2rem;
    }

    .hero-cta-section {
        flex-direction: column;
    }

    .methodology-grid-layout {
        grid-template-columns: 1fr;
    }

    .programs-display-grid {
        grid-template-columns: 1fr;
    }

    .featured-program {
        transform: scale(1);
    }

    .transformation-content-split {
        grid-template-columns: 1fr;
    }

    .form-row-group {
        grid-template-columns: 1fr;
    }

    .contact-info-block {
        grid-template-columns: 1fr;
    }

    .footer-column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.policySection {


  padding: 80px 2rem;
                    background: #f8f9fa;

}

.policyContainer {
    max-width: 800px;
    margin: 0 auto;
 text-align: left;
}

.policyContainer h2 {
   font-size: 2.5rem;
  color: #2c3e50;
         margin-bottom: 1.5rem;
   font-weight:        700;
}

.policyContainer p    {

    color: #7f8c8d;
  margin-bottom: 1.5rem;
   line-height: 1.7;
    font-size     :   1.1rem;


}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.about-hero-banner {
  background: linear-gradient(to right, #2c3e50, #3498db);
    padding: 100px 20px;
  text-align: center;
   color: #fff;
}

.about-hero-inner {
   max-width: 900px;
   margin: 0 auto;
}

.about-main-headline
	{
                  font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;


}

.about-hero-text {
  font-size: 1.3rem;
	   line-height: 1.8;
	  opacity: 0.95;
}

.story-narrative-block{
  padding: 90px 20px;

	   background: #ffffff;
}

.story-layout-grid {
  display: grid;
	grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;


}

.story-section-heading {
    font-size: 2.3rem;
   margin-bottom: 1.8rem;
    color: #1a1a2e;
}

.story-paragraph-item {
   margin-bottom: 1.5rem;
    line-height: 1.9;
               color: #555;
         font-size: 1.05rem;
}

.story-featured-photo {

	    width: 100%;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	}

.mission-values-segment {
    padding: 90px 20px;
  background: #f4f6f8;
	
}

.values-grid-display {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  margin-top :    3rem;
}

.value-card-box {
      background: #fff;
   padding: 35px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
}

.value-card-title {
	    color: #667eea;
    margin-bottom: 1rem;
   font-size: 1.6rem;

}



.value-card-text {
   line-height: 1.8; 
		color   :    #666; 
	
}

.approach-methodology-zone {
    padding: 90px 20px;
   background: #ffffff;
}

.approach-split-layout {
  display :    grid;
   grid-template-columns: 1fr 1.3fr;
   gap: 55px;
  align-items: center;
}

.approach-main-image
{
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.approach-headline-text {


    font-size: 2.3rem;
  margin-bottom: 1.5rem;
   color: #1a1a2e;


}

.approach-description-block     {
	  margin-bottom: 1.3rem;
    line-height: 1.9;
   color: #555;
     }

.approach-features-wrapper {
   margin-top: 2.5rem;
}

.approach-feature-element {
  margin-bottom: 1.8rem;
  padding-left: 30px;
  position: relative;
}



.approach-feature-element:before {
  content: '';
  border-radius: 50%;
   left: 0;
    top: 5px;
    position: absolute;
   height: 18px;
    width: 18px;
  background: #667eea;


}

.feature-mini-heading{

  font-size     :   1.2rem;
  margin-bottom: 0.5rem;
        color: #2c3e50;


}

.feature-mini-text {
   color: #666;

   line-height: 1.7;
}

.expertise-showcase-area {
    padding: 90px 20px;
    background: #f4f6f8;
}

.expertise-intro-paragraph {

	 text-align: center;
   color: #6c757d;
	margin-bottom: 3rem;
  font-size: 1.1rem;}

.expertise-columns-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.expertise-category-item {
  background     : #fff;
   padding: 30px;
	 border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.expertise-item-heading {
  font-size: 1.4rem;
   margin-bottom: 1rem;
       color: #2c3e50;
}

.expertise-item-details {
	 line-height: 1.8;
   color: #666;

}

.statistics-proof-section {
	 padding: 90px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}


.statistics-proof-section .section-main-title {
   color: #ffffff;
}

.stats-display-row	{
    display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap: 40px;
         margin-top: 3rem; 
	
}

.stat-item-block  {
	    text-align: center;
   padding    :    30px;
}

.stat-number-display {
    font-size: 3.5rem;
    font-weight: 700;
   margin-bottom: 0.8rem;
  color: #ffd700;
}

.stat-label-text {
    font-size    :    1.1rem;
       opacity:       0.95; 
	
}

.working-process-area   {
   padding: 90px 20px;
  background: #ffffff;
}

.process-steps-layout  
  {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 30px;
  margin-top :  3rem;
}

.process-step-card {
  background  :    #f8f9fa;
    -webkit-transition: all 0.3s;
  padding: 35px 25px;
   border-radius: 12px;
   -moz-transition: all 0.3s;
	 -o-transition: all 0.3s;
    border-left: 4px solid #667eea;
 transition: all 0.3s;
} 

.process-step-card:hover {

    background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.step-number-badge {
               display:       inline-block;
  width: 50px;
    height: 50px;
   background: #667eea;
					color: #fff;
  border-radius     :      50%;
   text-align: center;
    line-height: 50px;
   font-size: 1.3rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
}

.step-title-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}  

.step-description-content  {
  line-height: 1.8;
   color: #666; 
	
}

.final-cta-about		{
   padding: 100px 20px;
  background: linear-gradient(to right, #3498db, #2c3e50);
      text-align:        center;
    color: #fff;
}

.final-cta-wrapper {

	 max-width: 800px; 
   margin: 0 auto;
     }

.final-cta-heading		{
  font-size: 2.8rem;

   margin-bottom   :   1.5rem;
}

.final-cta-subtext {
  font-size: 1.2rem;
                    margin-bottom: 2.5rem;
    opacity: 0.95;
}  

.final-cta-button 
 {
        display: inline-block;
    color   :        #3498db;
   background :    #ffffff;
  border-radius: 8px;
  transition: all 0.3s;
   text-decoration: none;
	 font-weight     :    700;
  padding: 18px 45px;
   font-size: 1.1rem;
}

.final-cta-button:hover {
	 background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.thankyou-main-container {
  min-height: calc(100vh - 300px);
    display: flex;
	align-items: center;
    justify-content: center;
  padding   :        80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-content-box


{
               max-width: 700px;
  background: #ffffff;
   padding: 60px 50px;
   border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  text-align     :     center;
}

.success-icon-wrapper		{
      margin-bottom: 2rem;
}

.checkmark-circle {
		 width: 100px;
          height: 100px;
    background: #10b981;
    border-radius: 50%;
   margin: 0 auto;
	 display: flex;
    align-items :  center;
 justify-content: center;
    animation: scaleIn 0.5s ease-out;

}  @keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.checkmark-symbol {
    width: 40px; 
    height: 60px; 
  border: solid #ffffff; 
   border-width: 0 6px 6px 0; 
  transform: rotate(45deg); 
   margin-bottom    :        10px;
}

.thankyou-primary-heading {
    font-size: 2.5rem;
    color    :      #1a1a2e;
  margin-bottom: 1.5rem;
}

.thankyou-message-text {
    font-size: 1.1rem;
	  line-height :1.8;
	   color: #6c757d;
	    margin-bottom: 3rem;
}

.next-steps-section {
  margin: 3rem 0;
    -moz-border-radius: 12px;
   padding: 35px;
    background: #f8f9fa;
   border-radius: 12px;
}

.next-steps-heading {
  font-size: 1.8rem;
	margin-bottom: 2rem;
  color: #2c3e50;
}

.steps-list-container {
   text-align: left;
}

.step-info-item  
  {
	 display: flex;
  gap: 20px;
    margin-bottom: 2rem;
}

.step-info-item:last-child {
   margin-bottom: 0;
}

.step-icon-box {
  width: 45px;
  height: 45px;
   background: #667eea;
   color: #fff;
   border-radius: 8px;
	display: flex;
  align-items    :       center;
    justify-content: center;
   font-weight: 700;
	font-size: 1.2rem;
  flex-shrink: 0;
}

.step-text-content {
   flex: 1;
}

.step-mini-title {
    font-size: 1.2rem;
   margin-bottom: 0.5rem;
	 color :#2c3e50;


}

.step-mini-desc {
  color: #6c757d;
    line-height: 1.7;
} 

.additional-info-block {
                    margin :        2.5rem 0;
  padding: 25px;
    background: #e8f4f8;
	 border-radius: 10px;
    border-left: 4px solid #3498db;
}

.info-block-heading {
   font-size: 1.3rem;
   margin-bottom: 0.8rem;
   color: #2c3e50;
}

.info-block-paragraph {
      color:      #6c757d;
    line-height: 1.7;
}

.thankyou-actions-group {
    display: flex;
    gap: 15px;
  justify-content: center;
   margin: 2.5rem 0;


} 

.thankyou-primary-btn,
.thankyou-secondary-btn {


  padding: 15px 35px;
  border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition:all 0.3s;
 display: inline-block;
}

.thankyou-primary-btn {
    background    :    #667eea;
	 color: #ffffff;
}

.thankyou-primary-btn:hover {
  transform: translateY(-2px);
	 background: #5568d3;
}

.thankyou-secondary-btn {
   background: transparent;
    color: #667eea;
   border: 2px solid #667eea;
}

.thankyou-secondary-btn:hover {
  background: #f8f9fa;
}

.contact-reminder-box {
  margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;


}

.reminder-text-line


{
  color: #6c757d;
   margin-bottom: 0.5rem;
}

.reminder-phone-number {
   font-size: 1.5rem;
  font-weight: 700;
	color: #667eea;
}@media (max-width: 768px) {
    .about-main-headline {
        font-size: 2rem;
    }

    .about-hero-text {
        font-size: 1.1rem;
    }

    .story-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid-display {
        grid-template-columns: 1fr;
    }

    .approach-split-layout {
        grid-template-columns: 1fr;
    }

    .expertise-columns-grid {
        grid-template-columns: 1fr;
    }

    .stats-display-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .process-steps-layout {
        grid-template-columns: 1fr;
    }

    .final-cta-heading {
        font-size: 2rem;
    }

    .thankyou-content-box {
        padding: 40px 30px;
    }

    .thankyou-primary-heading {
        font-size: 2rem;
    }

    .thankyou-actions-group {
        flex-direction: column;
    }

    .thankyou-primary-btn,
    .thankyou-secondary-btn {
        width: 100%;
    }
}