* {
    padding: 0;
    margin  : 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #2c3e50;
        background-color: #fafbfc;
}

.topNav {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         padding: 1rem 0;
   position: fixed;
  width: 100%;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navContainer {
  justify-content: space-between;
    display: flex;
	 max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  align-items: center;
}

.brandSection .companyLogo
{
    height  :45px;
  filter: brightness(0) invert(1);
}

.menuList {
  display: flex;
   list-style: none;
	gap: 2rem;
}

.menuList a {
               color: white;
		 text-decoration :        none;
   font-weight: 500;
   transition: all 0.3s ease;
    padding: 8px 16px;
   border-radius: 25px;
}

.menuList a:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobileToggle {
  display: none;
    flex-direction: column;
  cursor: pointer;
	 gap: 4px;
}  

.toggleLine {
    height: 3px;
    transition: all 0.3s ease;
  width: 25px;
    background-color: white;}

.heroSection {
    padding-top   :     120px; 
    min-height: 100vh; 
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%); 
   display: flex; 
  align-items  :        center;
}

.heroWrapper {
   max-width:      1200px;
  margin: 0 auto;
   padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap  :       3rem;
   align-items: center;
}

.heroContent h1 {
   font-size: 3.2rem;
    font-weight: 700;
  color: white;
                    margin-bottom: 1.5rem;
  line-height   :       1.2;
}

.heroDescription {
	 font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
   line-height: 1.7;
}

.heroActions  
  {
  display: flex;
    gap  :1rem;
   flex-wrap: wrap;
}

.primaryBtn, .secondaryBtn, .ctaButton, .submitBtn {
    transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
  border: none;
  cursor: pointer;
   font-size: 1rem;
  -webkit-border-radius: 30px;
    border-radius: 30px;
    text-decoration: none;
  font-weight: 600;
    padding: 14px 28px;
}

.primaryBtn {
               background-color: #fff;
   color: #667eea;
}

.primaryBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.secondaryBtn
	{
   background-color     :      transparent;
      color: white;
      border: 2px solid white;
}

.secondaryBtn:hover {
    background-color   : white;
    color: #667eea;


}

.heroImage {
  width: 100%;
  height: 400px;
  object-fit: cover;
                    border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.servicesOverview {
  padding   : 80px 0; 
	   background-color: #fff;
}

.sectionContainer {

	    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;


}

.servicesOverview h2 {
  text-align: center;
	font-size: 2.8rem;
   margin-bottom: 3rem;
         color: #2c3e50;
   font-weight: 700;
}


.servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.serviceCard {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem;
   border-radius: 15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.serviceCard:hover    {
  transform: translateY(-10px);
}

.serviceImg {
    width: 100%;
   height     :        200px;
   object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem; 

}

.serviceCard h3


{
  font-size: 1.5rem;
  margin-bottom: 1rem;
   color   :    #2c3e50; 

}

.serviceCard p {
     color: #6c757d;
   line-height: 1.6;
}

.ctaSection   {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ctaContainer {
	    max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
    display    :    grid;
   grid-template-columns: 1fr 1fr;
  gap   :      3rem;
   align-items: center;

}

.ctaContent h2 {
    font-size: 2.5rem;
   color: white;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.ctaContent p {
    font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
    line-height: 1.7;
}

.ctaButton {

  background-color: #fff;
  color   :      #667eea;
          display    :      inline-block;

}

.ctaButton:hover {


  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);


}

.ctaImage {
    width: 100%;
        height: 350px;
    object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);


}

.benefitsSection {
  padding  :      80px 0;
   background-color: #f8f9fa;
}

.benefitsWrapper {
	                    max-width: 1200px;
     margin: 0 auto;
   padding: 0 20px;
}

.benefitsSection h2
{
                    text-align: center;
  font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight    :      700;
}

.benefitsList {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}



.benefitItem {
    background: white;
  padding: 2rem;
  border-radius: 15px;
   text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition     :all 0.3s ease;
}

.benefitItem:hover {
     transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15); 


}

.benefitItem h3 {
  font-size: 1.4rem;
  margin-bottom    :       1rem;
    color: #667eea;
  font-weight  : 600;
}

.benefitItem p {
  color: #6c757d;
    line-height: 1.6;
}

.contactSection {
			padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.contactContainer {
    padding: 0 20px;
    max-width: 800px;
    text-align: center;
    margin   :       0 auto;
}

.contactSection h2

{
   font-size: 2.5rem;
	    color: white;
	   margin-bottom: 1rem;
	    font-weight: 700;
}

.contactSection p {
   font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3rem;
   line-height: 1.7;
}


.contactForm {

  background: rgba(255,255,255,0.1);
  padding: 2.5rem;
    border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.formGroup    {
    margin-bottom: 1.5rem;
    text-align: left; 
	
}

.formGroup label   {
	display: block;
    margin-bottom:      0.5rem;
    color: white;
   font-weight: 500;
}

.formGroup input,
.formGroup select,
.formGroup textarea     {
   width: 100%;

               padding    :    12px 16px;

  border: 2px solid rgba(255,255,255,0.3);

               border-radius: 10px;

  background: rgba(255,255,255,0.9);

   font-size: 1rem;

  transition  : all 0.3s ease;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.submitBtn
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
    width: 100%;
  margin-top :1rem; 
	
}

.submitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.siteFooter {
  background-color: #1a1a1a;
  color: white;
    padding: 3rem 0 1rem;
}

.footerContainer {
    max-width     :      1200px;
  margin: 0 auto;
   padding  :   0 20px;
}

.footerContent {

    display: grid;
   grid-template-columns: auto 1fr;
   gap: 3rem;
          margin-bottom :      2rem;
     }

.footerLogo {
   height: 50px;
  filter: brightness(0) invert(1); 
	
}

.footerInfo {
	  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

   gap: 2rem;
	}

.footerSection h4 {
  margin-bottom: 1rem;
  color: #667eea;
	font-weight   :  600;
}

.footerSection ul {
    list-style: none;
}

.footerSection ul li {
   margin-bottom: 0.5rem; 
	
}

.footerSection a {
   color: #bbb;
   text-decoration: none;
  transition:   color 0.3s ease;
}


.footerSection a:hover {
    color: #667eea;
}

.footerSection p {
  color: #bbb;
    line-height: 1.6;
}

.footerBottom 
 {
  color: #888;
  padding-top: 1rem;
   text-align: center;
    border-top: 1px solid #333;
}@media (max-width: 768px) {
    .mobileToggle {
        display: flex;
    }
    
    .menuList {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .menuList.active {
        left: 0;
    }
    
    .heroWrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .heroContent h1 {
        font-size: 2.5rem;
    }
    
    .heroActions {
        justify-content: center;
    }
    
    .ctaContainer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footerContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .heroImage,
    .ctaImage {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .heroContent h1 {
        font-size: 2rem;
    }
    
    .servicesGrid {
        grid-template-columns: 1fr;
    }
    
    .benefitsList {
        grid-template-columns: 1fr;
    }
    
    .contactForm {
        padding: 1.5rem;
    }
}.aboutHero {

					padding-top: 120px;
   min-height: 70vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
   display: flex;
  align-items: center;


}

.aboutHeroContainer {
	   align-items: center;
  display: grid;
    max-width: 1200px;
   padding: 0 20px;
    grid-template-columns: 1.2fr 1fr;
     margin: 0 auto;
					gap: 3rem;
     }

.aboutHeroContent h1 {
  font-size: 2.8rem;
   font-weight: 700;
    color: white;
    margin-bottom :    1.5rem;
   line-height: 1.2;
}

.aboutIntro {
    font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
               line-height: 1.7;
}

.aboutHeroImg {
     width: 100%;
   height: 350px;
    object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);

}

.ourStory {
   padding: 80px 0;
    background-color: #fff;
}

.storyContainer {
   max-width     :        1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ourStory h2 {
   text-align: center;
   font-size: 2.5rem;
    margin-bottom   :    3rem;
   color: #2c3e50;
	 font-weight: 700;
	
}

.storyContent {
   align-items: start;
   display: grid;
  grid-template-columns: 1.3fr 1fr;
    gap: 3rem;


}  

.storyText h3 {
	font-size: 1.4rem;
   color: #667eea;
  margin-bottom: 1rem;
    margin-top :   2rem;
    font-weight: 600;
}

.storyText h3:first-child {


   margin-top: 0;


}

.storyText p {
  color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
   font-size: 1rem;
} 

.storyImg {
    width: 100%;
  height    :   300px;
    object-fit :cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.ourMission {
   padding: 80px 0;
   background-color: #f8f9fa;
}

.missionWrapper {
  max-width  :1200px; 
    margin: 0 auto; 
  padding: 0 20px;
}



.ourMission h2 {
     text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #2c3e50;
    font-weight   :       700; 
	
}

.missionGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}  

.missionCard {
  background:        white;
  padding: 2.5rem 2rem;
  border-radius    :  15px;
    text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition : transform 0.3s ease;
}

.missionCard:hover {
     transform: translateY(-8px);
	
}

.missionCard h3 {
  font-weight: 600;
	    font-size: 1.5rem;
	   color: #667eea;
	    margin-bottom: 1.5rem;
}

.missionCard p     {
   color: #555;
  line-height: 1.6;
   font-size: 1rem;
}

.expertise {


  padding: 80px 0;
	   background-color   : #fff; 
	
	}

.expertiseContainer {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.expertise h2 {
  text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
   color  :   #2c3e50;
  font-weight: 700;
}

.expertiseContent {
	gap: 3rem;
  grid-template-columns: 1fr 1.3fr;
  align-items: start;
      display    :   grid;
}

.expertiseImg 
 {
          width  :100%;
   height: 400px;
     object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expertiseDetails h3{

  font-size: 1.8rem;
 margin-bottom:     2rem;
   color     :     #2c3e50;
  font-weight: 600;
	}

.expertiseList {
  display: flex;
   flex-direction: column;
   gap: 1.5rem;


}

.expertiseItem {
	   padding: 1.5rem;
    background: #f8f9fa;
   border-radius: 10px;
        border-left: 4px solid #667eea;


}

.expertiseItem h4 {
               font-size: 1.2rem;
    color: #2c3e50;
	 margin-bottom: 0.8rem;
   font-weight: 600;
}

.expertiseItem p {
  color    :        #555;
    line-height: 1.6;
   font-size: 0.95rem;
}

.achievementsSection {
    padding: 80px 0;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.achievementsWrapper {
   max-width: 1200px;
  margin: 0 auto;
         padding: 0 20px;
}

.achievementsSection h2 {

	  text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
  font-weight: 700;
}

.achievementsGrid {
   display     : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.achievementItem    {
	 text-align: center;
    padding: 2rem 1rem;
  background: rgba(255,255,255,0.1);
    border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.achievementNumber {
    display: block;
   font-size: 3rem;
   font-weight: 700;
    color: white;
  margin-bottom:     1rem;
}

.achievementItem h3 {
   font-size: 1.3rem;
  color: white;
		margin-bottom: 1rem;
          font-weight: 600;
}

.achievementItem p {
  color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-size: 0.9rem;
}

.methodologySection

{
    padding: 80px 0;
    background-color: #f8f9fa;
}

.methodologyContainer {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.methodologySection h2 {
    text-align: center;
   font-weight: 700;
	margin-bottom: 3rem;
  font-size: 2.5rem;
    color: #2c3e50;
}

.methodologySteps {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  gap: 2rem;

}

.methodStep {
	 background: white;
  padding: 2rem;
  border-radius: 15px;
   text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position: relative;


}

.stepNumber {
    display: inline-block;
   width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
    line-height: 50px;
  font-size: 1.2rem;
  font-weight :700;
  margin-bottom    :     1.5rem;
} 

.methodStep h3 {
   font-size: 1.3rem;
    color: #2c3e50;
                    margin-bottom: 1rem;
  font-weight: 600;
}

.methodStep p {
   color: #555;
	line-height: 1.6;
      font-size  :     0.95rem;
}

.whyChooseUs {
	    padding  :    80px 0;
	background-color: #fff;}  

.chooseUsContainer {
    max-width   :    1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.whyChooseUs h2 {
     text-align: center;
  font-size   :        2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
	}

.chooseUsContent {
	    display: grid;
  grid-template-columns  : 1fr 1.2fr;
    gap: 3rem;
    align-items    :       start;

} 

.chooseUsImg {
  width   : 100%;
  height  :      350px;
    object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reasonsList {

  gap: 1.5rem; 
	    display: flex; 
	    flex-direction: column;

	}

.reasonItem {
    padding: 1.5rem;
    background: #f8f9fa;
               border-radius: 12px;
  border-left: 4px solid #667eea;
}

.reasonItem h3     {
	font-size: 1.2rem;
  color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight     :    600;
}

.reasonItem p {
     color: #555;
  line-height: 1.6;
    font-size: 0.95rem;
}

.thankYouHero	{
                    padding-top: 120px;
   min-height: 80vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
   display: flex;
  align-items: center;
}

.thankYouContainer   {
  max-width: 1200px;
  margin :    0 auto;
    padding: 0 20px;
                    display: grid;
					grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
   align-items: center;
}

.successIcon 
 {
  text-align :   center;
    margin-bottom: 2rem;
}

.checkmarkCircle {


    width: 80px;
   height: 80px;
  background-color: #27ae60;
          border-radius: 50%;
   display: inline-flex;
    align-items: center;
   justify-content    :   center;
  margin: 0 auto;
   animation     :    checkmarkBounce 0.6s ease-out;


}

.checkmark {
  width: 25px;
    height     :        15px;
  border: 3px solid white;
       border-top: none;
  border-right: none;
  transform: rotate(-45deg);
    margin-top: -5px;
}

@keyframes checkmarkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}.thankYouContent h1 {
  font-size: 2.8rem;
  font-weight: 700;
	color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.thankYouSubtitle {
   font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
    text-align: center;
  margin-bottom: 3rem;
}

.confirmationDetails {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
} 

.confirmationDetails h2 {
   color: white;
    font-size: 1.5rem;
    margin-bottom    :        1.5rem;
   text-align: center;
 font-weight  :   600;
}

.nextSteps
{
           display: flex;
                    flex-direction: column;
	gap: 1.5rem;}

.stepItem

{
        display: flex;
   align-items   :  start;
   gap    :        1rem;
}

.stepIcon {
  width: 30px;
    height: 30px;
  background-color: white;
    color: #667eea;
   border-radius: 50%;
	display :flex;
  align-items : center;
     justify-content: center;
	font-weight: 700;
    flex-shrink: 0;
   margin-top     :       0.2rem;
}

.stepContent h3 {
  color: white;
  font-size: 1.1rem;
   margin-bottom: 0.5rem;
     font-weight: 600;
}

.stepContent p
{
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
   font-size: 0.9rem;
}

.additionalInfo {
  text-align: center;
}

.additionalInfo h2 {
	 color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
          font-weight: 600;
}

.additionalInfo p	{
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.quickActions {
    display: flex;
   gap: 1rem;
   justify-content: center;
  flex-wrap:        wrap;
}

.actionBtn {
    padding: 12px 24px;
   border-radius: 25px;
  text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
    font-size: 0.9rem;
}

.actionBtn.primary
{
   background-color: white; 
	  color: #667eea;
}

.actionBtn.secondary {
   background-color: transparent;
  color: white;
  border: 2px solid white;
}

.actionBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.thankYouImg {

		width: 100%;
      height: 350px;
    object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
     }

.whileYouWait {
    padding: 80px 0;
	background-color: #f8f9fa;


}

.waitContainer {
   max-width: 1200px;
  margin    :    0 auto;
   padding :       0 20px;
} 

.whileYouWait h2 {
    text-align :     center;
    font-size   :     2.2rem;
    margin-bottom: 3rem;
        color: #2c3e50;
    font-weight: 700;
}

.tipsGrid {
  display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.tipCard {
    background: white;
  padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.tipCard:hover {
  transform: translateY(-5px);
}

.tipCard h3 {
   font-size: 1.3rem;
   color:  #667eea;
  margin-bottom: 1rem;
  font-weight  :      600;
}

.tipCard p {


  color: #555;
    line-height: 1.6;
   font-size: 0.95rem;


}



.urgentContact   {
    padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.urgentContainer {
  max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; 

}

.urgentContact h2 {
	  font-weight: 700;
    margin-bottom: 1rem;
   font-size: 2.2rem;
	 color :    white;


}

.urgentContact p {
   font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
  line-height: 1.6;
}

.contactDetails  {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	}

.contactMethod {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
   border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}



.contactMethod h3 {
        color: #667eea;
    font-size: 1.2rem;
    margin-bottom     :        1rem;
  font-weight: 600;
}



.contactMethod p {
    color: white;
	font-size    : 1rem;
	margin-bottom: 0.5rem;
                    line-height: 1.4;


}

.contactMethod span {


  color: rgba(255,255,255,0.7);
    font-size: 0.9rem;

}@media (max-width: 768px) {
    .aboutHeroContainer,
    .storyContent,
    .expertiseContent,
    .chooseUsContent,
    .thankYouContainer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .aboutHeroContent h1,
    .thankYouContent h1 {
        font-size: 2.2rem;
    }
    
    .confirmationDetails {
        padding: 1.5rem;
    }
    
    .stepItem {
        text-align: left;
    }
    
    .quickActions {
        flex-direction: column;
        align-items: center;
    }
    
    .actionBtn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .aboutHeroContent h1 {
        font-size: 1.8rem;
    }
    
    .thankYouContent h1 {
        font-size: 2rem;
    }
    
    .missionGrid,
    .achievementsGrid,
    .methodologySteps,
    .tipsGrid {
        grid-template-columns: 1fr;
    }
    
    .contactDetails {
        grid-template-columns: 1fr;
    }
}