* {
   margin: 0;

	    padding   : 0;

	    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
      color: #333;
  background-color: #ffffff;
}

.mainNavContainer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    padding: 1rem 0;

	   position: fixed;

	    top: 0;

		 width: 100%;

	   z-index: 1000;

	  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navWrapper {
  max-width: 1200px;
  margin: 0 auto;
     display: flex;
 justify-content   :     space-between;
   align-items: center;
  padding: 0 2rem;
}

.brandSection .navLogo {
 height: 45px;
  width  :    auto;
}

.navLinksDesktop {
  display: flex;
  gap: 2.5rem;
}

.navLink {
  color: white;
    text-decoration: none;
          font-weight: 500;
   transition: color 0.3s ease;
    position: relative;
}

.navLink:hover, .navLink.active   {
  color: #ffd700;
}

.navLink::after {
  content: '';
  position: absolute;
 width: 0;
   height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.navLink:hover::after, .navLink.active::after


{
   width     :        100%;
}

.mobileMenuToggle {
		 display: none;
  flex-direction    :        column;
   cursor: pointer;
}

.mobileMenuToggle span {
   width: 25px;
    height: 3px;
   background: white;
    margin: 3px 0;
   transition: 0.3s;
}

.mobileNavMenu    {

	  display: none;
    position: absolute;
   top     :        100%;
   left: 0;
    width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding     :   1rem 0;
     }

.mobileNavLink {
       display   :  block; 
	  color: white; 
	  text-decoration: none; 
	  padding: 0.75rem 2rem; 
	  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobileNavLink:hover {

	  background: rgba(255,255,255,0.1);
  color  : #ffd700;
	}

.heroSection {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 120px 0 80px 0;
    min-height: 100vh;
    display    :       flex;
   align-items: center;
}

.heroContent
{
    max-width: 1200px;
   margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
   align-items: center;
   padding: 0 2rem;
}

.heroTextArea h1 {
  font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
   margin-bottom: 1.5rem;
  line-height: 1.2;
}

.heroSubtext {

   font-size  :      1.2rem;
  color  :    #555;
          margin-bottom: 2.5rem;
   line-height  : 1.7;

}

.heroButtons {
       display: flex;
    gap    :       1.5rem;
  flex-wrap: wrap; 
	
}

.primaryBtn, .secondaryBtn {

  padding: 15px 30px;
    border-radius: 8px;
  text-decoration:       none;
    font-weight: 600;
    transition   :     all 0.3s ease;
  display: inline-block;


}

.primaryBtn  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border: none;
}

.primaryBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
} 

.secondaryBtn {
  background: transparent;
    color: #667eea;
   border: 2px solid #667eea;
}

.secondaryBtn:hover {
   background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.heroImageContainer  {
  position  :     relative;

}

.heroImage {
     width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);}

.servicesPreview  
  {

  background: #ffffff;
  padding: 100px 0;
     }

.containerFluid {


    max-width: 1200px;
    margin   :        0 auto;
    padding: 0 2rem;
	
	}

.sectionHeader {
    text-align: center;
    margin-bottom: 4rem;
}

.sectionHeader h2 {
  font-size   :   2.8rem;
  color: #2c3e50;
   margin-bottom: 1rem;
  font-weight: 700; 
	
}



.sectionHeader p  {

  font-size     : 1.1rem;
      color: #666;
    max-width: 600px;
         margin: 0 auto;

}

.servicesGrid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.serviceCard {
    background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serviceCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15); 

}

.serviceImg {
   width: 100%;
  height: 220px;
    object-fit: cover; 

}

.serviceCard h3 {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
    font-size :      1.4rem;
    color: #2c3e50;
    font-weight  :   600;
}

.serviceCard p {

   padding: 0 1.5rem 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
     }

.ctaSection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
   color: white;
}

.ctaContainer {
    max-width: 1000px;
    margin: 0 auto;
			padding: 0 2rem;
}

.ctaContent {
         text-align: center;

}

.ctaContent h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight     :      700;
}

.ctaContent p {
    font-size  :1.1rem;
    margin-bottom: 3rem;
      opacity: 0.9;
         line-height: 1.7;
}

.ctaStats {
  display  :        flex;
	justify-content: center;
    gap: 3rem;
   margin-bottom: 3rem;
   flex-wrap: wrap;
}

.statItem {
    text-align  :     center;
}

.statNumber {
   display :   block;
   font-size: 2.5rem;
   font-weight: 700;
   color  :#ffd700;
}

.statLabel {
   font-size: 0.9rem;
   opacity: 0.8;
}

.ctaPrimaryButton {
	   background: white;
  color: #667eea;
   padding   :        18px 40px;
   border-radius: 8px;
   text-decoration: none;
    font-weight: 600;
	display: inline-block;
	transition: all 0.3s ease;}  

.ctaPrimaryButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.approachSection {
      padding: 100px 0;
  background: #f8f9fa;
}

.approachWrapper     {
   grid-template-columns  :  1fr 1.2fr;
	gap: 4rem;
  align-items: center;
    max-width: 1200px;
   padding: 0 2rem;
   margin: 0 auto;
       display: grid;
}

.approachImage {
    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.approachTextSide h2 
 {


  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
     }

.approachTextSide > p {
    font-size :1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.approachFeatures {
       display: flex;
  flex-direction: column;
   gap: 1.5rem;
     }

.featureItem h4{
   color: #667eea;
  font-size: 1.2rem;
   margin-bottom :   0.5rem;
   font-weight: 600;
}

.featureItem p  
  {
    color: #666;
  line-height: 1.6;


}

.contactSection {
  padding: 100px 0;
   background: white;
}

.contactContainer {

  max-width: 1200px;
    margin: 0 auto;
      display    :        grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
         padding: 0 2rem;


}

.contactFormSide h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom :     1rem;
  font-weight: 700;}

.contactFormSide p {
  color: #666;
	margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contactForm {
  display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.formRow {
   display: flex;
  gap: 1.5rem;
}

.inputGroup     {
	   flex: 1;
}

.inputGroup.fullWidth     {
 width: 100%;
}

.formInput, .formSelect, .formTextarea {
    width: 100%;
  padding :        15px;
	 border: 2px solid #e0e0e0;
   border-radius: 8px;
  font-size: 16px;
   transition: border-color 0.3s ease; 
	
}

.formInput:focus, .formSelect:focus, .formTextarea:focus {
    outline: none;
  border-color: #667eea;
}

.formTextarea {
  height: 120px;
   resize: vertical;
}

.submitButton {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 8px;
      font-size: 16px;
  font-weight: 600;
	cursor: pointer;
   transition: all 0.3s ease;
}

.submitButton:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);}

.contactInfoSide {

	  background     :       #f8f9fa;
	padding: 2.5rem;
     border-radius :       12px;}

.contactDetails h3 {
  font-size: 1.5rem;
	color:    #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contactItem {
  margin-bottom     :1.5rem;
}

.contactItem strong {
   color: #667eea; 
   display: block; 
               margin-bottom: 0.5rem;
}

.contactItem p {
    color: #666;
    line-height: 1.6;
}

.mainFooter


{
  background: #2c3e50;
   color: white;
    padding  :      60px 0 20px 0; 
	
}

.footerContent  {
	 gap: 2rem;
   margin-bottom: 2rem;
               grid-template-columns: 1.5fr 1fr 1fr 1fr;
   padding: 0 2rem;
    max-width: 1200px;
  margin: 0 auto;
   display   :  grid;
}

.footerBrand p {
  margin-top:   1rem;
   color: #bdc3c7;
  line-height: 1.6;
}

.footerLogo {
       height:    40px;
    width: auto;
  filter: brightness(0) invert(1);
	}

.footerColumn h4 {
   margin-bottom: 1rem;
    color  :      #ffd700;
   font-weight: 600;
}

.footerColumn a {
   display: block;
   color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
   transition: color 0.3s ease;
}

.footerColumn a:hover {
    color: #ffd700; 

}

.footerColumn p {

	  color: #bdc3c7;
	line-height: 1.6;
   margin-bottom:        0.5rem;
     }

.footerBottom {
    text-align: center;

  max-width  :       1200px;

	margin: 0 auto;

   padding-left: 2rem;

  padding-right :   2rem;

  padding-top: 1.5rem;

  border-top: 1px solid #34495e;
}

.footerBottom p {
       color: #95a5a6;
       font-size: 0.9rem;


}@media (max-width: 768px) {
    .navLinksDesktop {
        display: none;
    }
    
    .mobileMenuToggle {
        display: flex;
    }
    
    .mobileNavMenu.active {
        display: block;
    }
    
    .heroContent {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .heroTextArea h1 {
        font-size: 2.5rem;
    }
    
    .heroButtons {
        justify-content: center;
    }
    
    .servicesGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ctaStats {
        gap: 2rem;
    }
    
    .approachWrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contactContainer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .formRow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footerContent {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sectionHeader h2 {
        font-size: 2.2rem;
    }
    
    .ctaContent h2 {
        font-size: 2rem;
    }
    
    .approachTextSide h2 {
        font-size: 2rem;
    }
    
    .contactFormSide h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navWrapper {
        padding: 0 1rem;
    }
    
    .containerFluid, .ctaContainer, .approachWrapper, .contactContainer, .footerContent {
        padding: 0 1rem;
    }
    
    .heroTextArea h1 {
        font-size: 2rem;
    }
    
    .heroButtons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primaryBtn, .secondaryBtn {
        text-align: center;
        width: 100%;
    }
    
    .ctaStats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footerBottom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}.aboutHeroSection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 0 80px 0;
  color: white;
  text-align: center;
}

.aboutHeroContent
	{
   max-width     :  900px;
  margin: 0 auto;
   padding: 0 2rem;}

.aboutHeroText h1 {
  font-size: 3.5rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.aboutSubtitle {
    max-width: 700px;
    opacity: 0.9;
  font-size  :    1.3rem;
    margin: 0 auto;
  line-height: 1.7;
}

.companyStorySection {
  padding   :   100px 0;
  background: #ffffff;
}


.storyContainer {
    max-width: 1200px;
   margin: 0 auto;
   display:      grid;
   grid-template-columns: 1.3fr 1fr;
	gap     :   4rem;
    align-items: center;
   padding: 0 2rem;
}

.storyTextContent h2 {
   color: #2c3e50;
       font-weight: 700;
   margin-bottom: 2rem;
  font-size: 2.8rem;
}

.storyTextContent p {
       margin-bottom: 1.5rem;
   font-size: 1.1rem;
  color: #555;
    line-height: 1.7;
}

.milestonesList   {
    margin-top: 2.5rem;
	display: flex;
  flex-direction: column;
    gap: 1.5rem;
}

.milestoneItem {
  border-left: 4px solid #667eea;
   padding: 1.5rem;
   background: #f8f9fa;
    border-radius: 8px;
	}

.milestoneItem strong {
   color: #667eea;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.milestoneItem p {
    margin: 0;
  color:    #666;
}

.storyImage {
                    width: 100%;
    height: auto;
   border-radius :    12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1); 

}



.teamValuesSection {
  padding     :100px 0;
  background: #f8f9fa;
}

.valuesContainer {
  max-width    :       1200px;
   margin   :      0 auto;
      padding: 0 2rem;
}

.valuesHeader {
  text-align  :  center;
  margin-bottom     :  4rem;
}

.valuesHeader h2 {


    font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
   font-weight: 700;}

.valuesHeader p		{
    font-size: 1.2rem;
  color: #666;
   max-width: 800px;
  margin: 0 auto;
    line-height: 1.7;
}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.valueCard {
  background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valueCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.valueCard h3 {
  font-size: 1.5rem;
  color: #667eea;
   margin-bottom: 1rem;
    font-weight   :        600; 

}

.valueCard p {
      color: #666;
  line-height  :  1.6;
   font-size: 1rem; 


}

.expertiseSection

{
    padding: 100px 0;
   background: white;
}

.expertiseWrapper {
  max-width: 1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
    padding: 0 2rem;
}

.expertiseImage {
  width    :    100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.expertiseContentSide h2 {
  font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 1.5rem;
  font-weight: 700;
}

.expertiseContentSide > p {
   font-size: 1.1rem;
  color: #555;
    margin-bottom     :     2.5rem;
  line-height: 1.7; 
	
}

.expertiseAreas {
  display: flex;
  flex-direction: column;
   gap: 2rem;
   margin-bottom   :       2.5rem;
}

.expertiseArea h4 {
  color: #667eea;
      font-size: 1.3rem;
  margin-bottom :      0.8rem;
  font-weight: 600;
}

.expertiseArea p {
  color     :        #666;
   line-height: 1.6;
}

.certificationNote {
                    background: #f0f4ff;
   padding: 1.5rem;
	border-radius: 8px;
   border-left: 4px solid #667eea;
}

.certificationNote p 
 {
  margin     :        0;
    color: #555;
    line-height     :    1.6;
}

.methodologySection {
    padding: 100px 0;
   background: #f8f9fa;
}

.methodologyContainer {
	 max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
}

.methodologyHeader {
       margin-bottom: 4rem;
  text-align: center;
}

.methodologyHeader h2 {

	   font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;}

.methodologyHeader p {
     font-size: 1.2rem;
          color: #666;
    max-width: 900px;
	margin: 0 auto;
  line-height: 1.7; 
	
}

.methodologySteps   {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.methodStep {
  background:    white;
  padding: 2.5rem;
       border-radius: 12px;
	text-align  :center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;

}

.methodStep:hover  
  {
  transform: translateY(-5px);
}

.stepNumber {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   width: 60px;
    height: 60px;
    border-radius: 50%;
   display: flex;
   align-items: center;
					justify-content: center;
   font-size: 1.5rem;
   font-weight     :700;
   margin: 0 auto 1.5rem auto;
}

.methodStep h3


{
  font-size: 1.4rem; 
	   color   :      #2c3e50; 
	  margin-bottom :    1rem; 
		font-weight: 600;
}

.methodStep p {
   color: #666;
  line-height: 1.6;
}

.resultsSection {
    padding: 100px 0;
  background: white;
}

.resultsContainer {
	 max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.resultsContent h2 {

		font-size: 2.8rem;
  color: #2c3e50;
    text-align: center;
    margin-bottom   :      1.5rem;
    font-weight: 700;

}

.resultsContent > p {
   font-size: 1.2rem;
    color: #666;
   text-align: center;
  margin-bottom  :        3rem;
	max-width: 800px;
  margin-left: auto;
     margin-right: auto;
    line-height: 1.7;
}

.resultsGrid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
   gap: 3rem;


}

.resultCard {
	  background: #f8f9fa;
   border-radius     :   12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.resultImage {
  width: 100%;
  height     :   250px;
	 object-fit: cover;
}

.resultStats {
    padding: 2rem;
    display: flex;
   justify-content: space-around;
   text-align: center;
}

.resultStat {


  display: flex;
  flex-direction    :       column;
	


}

.resultNumber {
  font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.resultLabel {
    font-size: 0.9rem;
   color     : #666;
   margin-top: 0.5rem;
}

.thankyouContainer {

    min-height: 80vh;
  display: flex;
   align-items: center;
       justify-content     :  center;
   padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	}

.thankyouContent {
   max-width  :1000px;
    text-align: center;
   padding: 0 2rem;
}

.thankyouIcon {
  margin-bottom: 2rem;
} 

.checkmarkCircle {
       width: 100px;
   height :    100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 border-radius: 50%;
   display: flex;
  align-items: center;
  justify-content: center;
         margin: 0 auto;
    position: relative;
	animation: pulse 2s infinite;
}

.checkmark {
    width: 30px;
    height: 15px;
    border: 4px solid white;
  border-top: none;
   border-right: none;
  transform: rotate(-45deg);
    margin-top: -5px;
}@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}.thankyouTitle {
  font-size: 3rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
         font-weight   :   700;
}  

.thankyouMessage {
  font-size: 1.2rem;
    color: #666;
  margin-bottom: 3rem;
    line-height     :1.7;
  max-width: 800px;
   margin-left   : auto;
    margin-right    : auto;
}



.nextStepsSection {
   background     :      white;
    padding: 3rem;
   border-radius: 12px;
   margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nextStepsSection h2 {
   font-size: 2.2rem;
  color: #2c3e50;
	 margin-bottom: 2rem;
  font-weight: 600;
}

.stepsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap  :2rem;
    margin-top: 2rem;
}

.stepItem {
	text-align: center;
    padding: 1.5rem;
}

.stepIcon {
	width: 50px;
   height   : 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content  :  center;
   font-size: 1.2rem;
  font-weight: 700;
    margin: 0 auto 1rem auto;
	
}

.stepItem h3 {
   font-size: 1.3rem;
      color: #2c3e50;
    margin-bottom: 1rem;
   font-weight: 600;
}

.stepItem p {
    color     : #666;
    line-height: 1.6;
   font-size: 0.95rem;
}

.whileWaitingSection {
  background: white;
    padding: 3rem;
          border-radius: 12px;
    margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.whileWaitingSection h2 {
    font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
	 font-weight: 600;
}

.whileWaitingSection > p		{
  font-size :   1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.resourcesGrid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem; 
	
}

.resourceCard {
  background: #f8f9fa;
  border-radius: 8px;
   overflow   : hidden;
   transition :transform 0.3s ease;
}

.resourceCard:hover {
  transform: translateY(-3px);
}

.resourceImage  
  {


  object-fit: cover;
   width :    100%;
    height: 180px;


}

.resourceCard h3 {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    font-size: 1.2rem;
    color: #2c3e50;
   margin    :       0;
  font-weight   :     600;
}

.resourceCard p {
   padding: 0 1.5rem 1.5rem 1.5rem;
  color: #666;
    line-height: 1.5;
   margin: 0;
  font-size: 0.95rem;
}

.contactReminder
{
  background: #f0f4ff;
  padding: 2.5rem;
   -webkit-border-radius: 12px;
  border-radius: 12px;
   margin-bottom: 3rem;
  border-left: 4px solid #667eea;
}

.contactReminder h3 {
    font-size: 1.5rem;
    color: #2c3e50;
   margin-bottom: 1rem;
   font-weight: 600;
}

.contactReminder > p {


  color: #666;
  margin-bottom: 1.5rem;
     line-height: 1.6;}  

.urgentContact p {
    margin-bottom: 0.5rem;
    color: #555;
}

.urgentContact strong {
    color: #667eea;
}

.thankyouActions {
   display: flex;
    gap: 1.5rem;
   justify-content: center;
  flex-wrap: wrap;
}


.backToHomeBtn, .learnMoreBtn {
   padding: 15px 30px;
   border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
    transition: all 0.3s ease;
	display: inline-block;
}

.backToHomeBtn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.backToHomeBtn:hover

{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.learnMoreBtn {
  background: transparent;
   color: #667eea;
   border: 2px solid #667eea;
}

.learnMoreBtn:hover  
  {
    color: white;
  transform: translateY(-2px);
      background: #667eea; 
	
	}@media (max-width: 768px) {
    .aboutHeroText h1 {
        font-size: 2.5rem;
    }
    
    .storyContainer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .valuesGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertiseWrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodologySteps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resultsGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyouTitle {
        font-size: 2.2rem;
    }
    
    .stepsGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resourcesGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thankyouActions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .backToHomeBtn, .learnMoreBtn {
        width: 100%;
        text-align: center;
    }
    
    .resultStats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .aboutHeroContent, .storyContainer, .valuesContainer, .expertiseWrapper, .methodologyContainer, .resultsContainer, .thankyouContent {
        padding: 0 1rem;
    }
    
    .aboutHeroText h1 {
        font-size: 2rem;
    }
    
    .storyTextContent h2, .valuesHeader h2, .expertiseContentSide h2, .methodologyHeader h2, .resultsContent h2 {
        font-size: 2rem;
    }
    
    .thankyouTitle {
        font-size: 1.8rem;
    }
    
    .nextStepsSection, .whileWaitingSection, .contactReminder {
        padding: 2rem;
    }
    
    .valueCard, .methodStep {
        padding: 2rem;
    }
}.privacySection {
    padding:      100px 0;
   background: #ffffff;
}

.privacyContent {
   max-width: 800px;
    margin: 0 auto;
  padding: 0 2rem;
}

.privacyContent h3 {
    font-size: 1.8rem;
      color: #2c3e50;
       margin-bottom: 1rem;
      font-weight: 600;
}

.privacyContent p {
    font-size: 1.1rem;
    color: #666;
         line-height: 1.7;
	margin-bottom:        1.5rem;
}

.privacyContent ul {
	list-style-type: disc;
   margin-bottom: 1.5rem;
   padding-left: 2rem;
}

.privacyContent li {
  font-size: 1.1rem;
   color: #666;
  line-height: 1.7;
   margin-bottom: 0.5rem;
}  