* {
 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: #fafafa;
} 

.main-navigation {
   position: fixed;
   top: 0;
    left   :    0;
        right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
   transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;


}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
   max-width: 1200px; 
	    margin: 0 auto; 
	  padding: 0 20px; 
	    display: flex; 
	    justify-content: space-between; 
	   align-items : center; 
	  height: 70px;
}

.site-logo {
   width: auto;
    height: 45px; 
	
}

.desktop-nav {
	   display   :  flex;
  gap    : 30px;

}

.desktop-nav a {
   text-decoration: none;
   color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.desktop-nav a:hover {
   color: #2c5aa0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
   width: 0;
  height: 2px;
          bottom: -5px;
    left: 0;
    background-color :   #2c5aa0;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
   display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
   width: 25px; 
	    height: 3px; 
	   background-color: #333; 
	   margin: 3px 0; 
	    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity   :     0;
}

.mobile-menu-toggle.active span:nth-child(3) 
 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-overlay {
    display: none;
  position   :       fixed;
  top: 70px;
  left: 0;
		right: 0;
 bottom: 0;
  background: rgba(0, 0, 0, 0.8);
          z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav-content {
   background: white;
   padding: 40px 20px;
  transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav-content {

	  transform: translateY(0);
	} 

.mobile-nav-content a {
   display  :block;
   padding: 15px 0;
   text-decoration: none;
    color: #333;
  font-weight: 500;
	border-bottom: 1px solid #eee;
   transition: color 0.3s ease;
}

.mobile-nav-content a:hover {
    color: #2c5aa0;
}

.hero-area {
    padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  min-height: 100vh;
  display: flex;
   align-items: center;
}

.hero-content-wrapper {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
 grid-template-columns   :   1fr 1fr;
       gap: 60px;
   align-items: center;
}

.hero-text-block h1		{
    font-size: 3.2rem;

	  font-weight: 700;

	   margin-bottom: 20px;

	  line-height: 1.2;
}

.hero-subtitle {
     font-size: 1.3rem;
    margin-bottom: 40px;
   line-height     : 1.6;
   opacity: 0.9;
	
}

.hero-buttons

{
  display: flex;
	gap: 20px;
                    flex-wrap: wrap;
}

.primary-cta-btn, .secondary-btn {
    padding: 15px 30px;
    text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
    transition   :       all 0.3s ease;
   display: inline-block;
}

.primary-cta-btn {
  background-color: #ff6b6b;
    color: white;
	border: 2px solid #ff6b6b;
}

.primary-cta-btn:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.secondary-btn {
   background-color: transparent;
         color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
  color: #667eea;
}

.hero-image-block img {
    width: 100%;
    height : auto;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.services-showcase {
   padding     :        100px 20px;
  background-color: #f8f9fa;
}

.section-container {
  max-width: 1200px;
    margin :    0 auto; 

}

.services-showcase h2


{
  text-align: center;
   font-size: 2.8rem;
  margin-bottom: 60px;
   color: #2c3e50;
}

.services-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap   :  40px; 

}

.service-card {
  background: white;
  padding: 40px 30px;
   border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
                    width: 100%;
	 height: 220px;
    object-fit    :   cover;
	border-radius: 10px;
    margin-bottom :  25px;
}

.service-card h3 {
   font-size: 1.6rem;
  margin-bottom: 15px;
  color: #2c3e50;}

.service-card p {

	    color: #666;
    line-height  :   1.7;
     }

.about-preview{
   padding: 100px 20px;

    background-color:  white;
	
}

.about-content-grid {
   max-width: 1200px;
     margin: 0 auto;
       display  :       grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
   margin-bottom: 25px;
   color: #2c3e50;
}

.about-text p 
 {
  font-size     :      1.1rem;
  color: #666;
  margin-bottom    : 40px;
   line-height: 1.8;
}

.stats-section {
               display: flex;
    gap: 40px;
   margin-bottom: 40px;
}

.stat-item {
       text-align     :    center;
}

.stat-number {
   display: block;
   font-size  :      2.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 5px;
}

.stat-label {
    color  :  #666;
   font-size: 0.9rem;
}

.learn-more-btn {
    display: inline-block;
  padding: 12px 25px;
  background-color: #2c5aa0;
  color:        white;
    text-decoration: none;
   border-radius: 6px;
    transition: background-color 0.3s ease;
}  

.learn-more-btn:hover {
       background-color: #1e3d6f;
}  

.about-image img {
   width: 100%;
  height: auto;
	 border-radius: 12px;
}

.cta-section {
   padding: 80px 20px;
  background: linear-gradient(45deg, #2c5aa0, #3d7ac7);
  color: white;
	text-align: center;
}

.cta-wrapper {
   max-width: 800px;
   margin: 0 auto;
}

.cta-content h2 {
   font-size  :    2.5rem;
  margin-bottom     :      20px;
}

.cta-content p  {
  font-size: 1.2rem;
   margin-bottom: 40px;
  opacity: 0.9;
}

.cta-button-main {
  display    :     inline-block;
    padding: 18px 40px;
    background-color: #ff6b6b;
   color: white;
       text-decoration: none;
               border-radius: 8px;
   font-weight: 600;
		 font-size: 1.1rem;
   transition    :    all 0.3s ease;
}

.cta-button-main:hover {
    background-color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.programs-section {
    padding: 100px 20px;
   background-color: #f8f9fa;
}



.programs-container {
         max-width: 1200px;
  margin: 0 auto;
} 

.programs-section h2
	{
  text-align: center;
    font-size: 2.8rem;
   margin-bottom: 60px;
    color: #2c3e50;
}

.programs-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.program-option {
    background: white;
  padding: 40px 30px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.program-option h3		{
  font-size: 1.7rem;
   margin-bottom     :      20px;
    color  :     #2c3e50;
}

.program-option p {
	 color: #666;
  margin-bottom: 25px;
	line-height: 1.7;
}

.program-features    {
	 list-style: none;
}

.program-features li {
	    padding: 8px 0;
    color: #555;
   position: relative;
   padding-left: 25px;
	}

.program-features li::before {
  content: '✓';
  position: absolute;
  left     :     0;
  color: #2c5aa0;
	font-weight:      bold;
}

.contact-section {
    padding: 100px 20px;
  background-color: white;
}

.contact-container  
  {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
      text-align: center;
  font-size: 2.8rem;
    margin-bottom    :     20px;
     color    :     #2c3e50;
}

.contact-intro {
    text-align     :   center; 
	  font-size: 1.2rem; 
	  color: #666; 
	               margin-bottom: 50px;
}

.contact-form {
  background: #f8f9fa;
    padding: 50px;
         border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row  
  {
	  display: grid;
    grid-template-columns: 1fr 1fr;
   gap   :    25px;
  margin-bottom: 25px;
}



.form-field {
    display: flex;
   flex-direction: column;
     }

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 8px;
  font-weight: 600;
    color: #333;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
   border-radius: 8px;
	font-size: 1rem;
   transition: border-color 0.3s ease;
  background-color: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline    :  none; 
   border-color: #2c5aa0;
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #e74c3c;
   background-color: #ffeaea;
}

.submit-button {
  font-size: 1.1rem;
    background-color: #2c5aa0;
         border: none;
   transition: background-color 0.3s ease;
    color: white;
  width: 100%;
    cursor: pointer;
  font-weight     :      600;
    border-radius  :    8px;
    padding: 15px;
}

.submit-button:hover {

	   background-color: #1e3d6f;
}

.site-footer {
   background-color: #2c3e50;

  color: white;

   padding: 60px 20px 20px;
}

.footer-content {
                    max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px; 

}

.footer-section h3 {
	margin-bottom: 20px;
  color: #ecf0f1;
}

.footer-logo {
   height: 40px;

	   width: auto;

	  margin-bottom: 15px;

	  filter: brightness(0) invert(1);
}

.company-description {
   line-height   :     1.7;

	 color: #bdc3c7;
}

.contact-details p {
  margin-bottom: 10px;
   color:#bdc3c7;
}

.footer-section ul 
 {
	list-style: none;
}

.footer-section ul li {


   margin-bottom: 10px;
     }

.footer-section ul li a {
       color: #bdc3c7;
  text-decoration: none;
    transition: color 0.3s ease;}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {

	  margin: 40px auto 0;
   padding-top: 20px;
   border-top: 1px solid #34495e;
  text-align: center;
	max-width  : 1200px;
    color: #95a5a6;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-block h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-section {
        justify-content: center;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 15px;
    }
    
    .hero-area {
        padding: 100px 15px 60px;
    }
    
    .hero-text-block h1 {
        font-size: 2rem;
    }
    
    .services-showcase,
    .about-preview,
    .programs-section,
    .contact-section {
        padding: 60px 15px;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 20px;
    }
}.about-hero-section {
   padding:        120px 20px 80px;
  background: linear-gradient(135deg, #3d7ac7 0%, #2c5aa0 100%);
  color: white;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap     :       50px;
    align-items: center;
}

.about-hero-content h1 {
   font-size: 3rem;
  font-weight: 700;
		margin-bottom: 25px;
   line-height   :   1.2;
}

.about-hero-description {
    font-size    :1.2rem;

    line-height: 1.7;

    opacity    :0.95;
}

.about-hero-image img {
  width: 100%;
    height: auto;
        border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
	
}

.mission-statement {
   padding: 100px 20px;
	 background-color: white;
}

.mission-container {
   margin: 0 auto;
    max-width: 1200px;
}

.mission-statement h2 {
    color: #2c3e50;
    text-align: center;
   font-size :     2.8rem;
                    margin-bottom: 50px;
}

.mission-content {
  display: grid;
  grid-template-columns  :        2fr 1fr;
   gap: 50px;
				 align-items: start;
}

.mission-text p {
    font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
    margin-bottom:25px; 
	
}

.mission-values {
    border-left  :        4px solid #2c5aa0;
         padding: 35px 30px;
    background: #f8f9fa;
	 border-radius: 12px;
}

.mission-values h3 {
   font-size: 1.5rem;
   margin-bottom: 20px;
    color: #2c3e50;
}

.values-list {

		list-style: none;
    padding: 0;}

.values-list li {
	padding: 10px 0;
  color :   #555;
   position: relative;
   padding-left:25px;
	border-bottom: 1px solid #e0e0e0;
}

.values-list li:last-child {
 border-bottom    :       none;
}

.values-list li::before {
  position: absolute;
  left  :   0;
  content: '→';
  color: #2c5aa0;
    font-weight  :bold;
}


.team-approach {
 padding  : 100px 20px;
  background-color: #f8f9fa;
} 

.approach-wrapper {
  max-width: 1200px;
    margin: 0 auto;
}

.team-approach h2 {
  text-align: center;
                    font-size: 2.8rem;
   margin-bottom: 60px;
  color: #2c3e50;
}

.approach-grid {
   display: grid;
   gap: 50px;
}

.approach-item {
   display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
   align-items   :     center;
	 background: white;
   padding: 40px;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.approach-item:nth-child(even) {
   grid-template-columns: 2fr 1fr;
}

.approach-item:nth-child(even) .approach-image {
   order: 2;
}

.approach-item:nth-child(even) .approach-content {
    order: 1;
}

.approach-image img {
   width: 100%;
	height   :        250px;
    object-fit: cover;
  border-radius: 10px;
}

.approach-content h3 {
	  font-size :1.8rem;
	margin-bottom: 20px;
    color: #2c3e50;

}

.approach-content p {
  font-size: 1.1rem;
    line-height: 1.7;
  color     :  #666;
}

.expertise-areas {
    padding  :  100px 20px;
    background-color:   white;
}

.expertise-container {
	max-width: 1200px;
   margin: 0 auto;
}

.expertise-areas h2     {
    text-align: center;
   font-size: 2.8rem;
    margin-bottom: 60px;
  color: #2c3e50;
}

.expertise-content {
    display    :     grid;
 grid-template-columns: 2fr 1fr;
    gap: 60px;
	 align-items   :       start;
} 

.expertise-list {
    display: grid;
   gap    :     35px;
}

.expertise-category h3 {
  font-size    :    1.6rem;
    margin-bottom: 20px;
 color: #2c5aa0;
    border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px; 
	
}

.expertise-category ul
{
   list-style: none;
    padding: 0;
}

.expertise-category ul li {
    padding: 8px 0;

  color: #555;

   position: relative;

    padding-left: 20px;
} 

.expertise-category ul li::before {
  content: '•';
    position: absolute;
  left: 0;
    color: #2c5aa0;
        font-weight: bold;
}

.expertise-image img	{
  width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.results-impact {
   padding:    100px 20px;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  color: white; 
	}


.results-container {

	   max-width: 1200px;
	margin   :  0 auto;}

.results-impact h2

{
   text-align: center;
    font-size: 2.8rem;
   margin-bottom   :      60px;
}

.results-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:        40px;
}

.result-card {
    text-align: center;
     padding  :       40px 25px;
  background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
}

.result-number {
  display: block;
    font-size: 3rem;
    font-weight: 700;
   margin-bottom: 15px;
  color: #fff;
	
}

.result-card h3 {


      font-size     :        1.3rem;
      margin-bottom: 15px;
     color: #fff;

}

.result-card p {
    font-size: 0.95rem;
	line-height    :     1.6;
	opacity: 0.9;
}

.about-cta {
   padding: 80px 20px;
    background-color: #2c3e50;
      color: white;
          text-align: center;
}

.about-cta-wrapper {
    max-width: 800px; 
		margin :   0 auto;
}

.about-cta h2 {
    font-size    : 2.5rem;
   margin-bottom: 20px;
}

.about-cta p {
   font-size: 1.2rem;
  margin-bottom: 40px;
 opacity: 0.9;
}

.cta-btn-about {
    display: inline-block;
          padding: 15px 35px;
    background-color: #2c5aa0;
   color: white;
  text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
	transition: all 0.3s ease;
}

.cta-btn-about:hover


{
  background-color: #1e3d6f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.thankyou-hero {
    padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
		min-height: 100vh;
	display: flex;
    align-items: center;
}

.thankyou-container {
    max-width: 1200px;
  margin: 0 auto;
               display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.thankyou-content {
    text-align: center;
}

.success-icon {
   margin-bottom: 30px;
}

.checkmark-circle {
   width: 80px;
      height: 80px;
       -moz-animation: scaleIn 0.5s ease-out;
       border-radius: 50%;
     -moz-border-radius: 50%;
     background-color: #4CAF50;
      margin: 0 auto;
     display: flex;
      align-items: center;
       justify-content     :       center;
      animation: scaleIn 0.5s ease-out;
}

.checkmark {
	 width: 25px;
  height     :12px;
  border: 3px solid white;
   border-top :     none;
  border-right: none;
  transform: rotate(-45deg);
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.thankyou-content h1  
  {
	   font-size: 3rem;
   line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;

}

.thankyou-message   {
       font-size: 1.2rem;
  line-height: 1.7;
    margin-bottom: 50px;
   opacity: 0.95;
}

.next-steps {
    margin-bottom: 50px;
  text-align: left;
}

.next-steps h2 {
   font-size: 2.2rem;
   margin-bottom: 35px;
  text-align: center;
}  

.steps-grid {
   display: grid;
     gap: 30px;
}

.step-item {
  display     :  flex;
  align-items: flex-start;
 gap     :     20px;
  background: rgba(255, 255, 255, 0.1);
   padding: 25px;
    border-radius: 10px;
  backdrop-filter: blur(10px);
}

.step-number {
    display:      flex;
   align-items  :        center;
	justify-content :center;
    width: 40px;
    height: 40px;
  background-color: #ff6b6b;
   color: white;
    border-radius: 50%;
    font-weight: 700;
  flex-shrink: 0;
}

.step-item h3 {
	font-size: 1.3rem;
  margin-bottom: 10px;
  color    :     white;
}

.step-item p	{
	   font-size: 1rem;
      line-height: 1.6;
   opacity: 0.9;
     }

.additional-info {
          margin-bottom: 40px;
   text-align: left;
}

.additional-info h2 {
   font-size: 2rem;
   margin-bottom: 30px;
   text-align: center;
}

.info-content {
  display: grid;

	  grid-template-columns: 1fr 1fr;

	    gap: 30px;
}

.preparation-tips,
.expectations {
  background: rgba(255, 255, 255, 0.1);
   padding: 25px;
    border-radius     :   10px;
  backdrop-filter: blur(10px);

}

.preparation-tips h3,
.expectations h3 {
    font-size: 1.3rem;
          margin-bottom: 15px;
 color: white;
}

.preparation-tips ul,
.expectations ul {
	list-style: none;
   padding: 0;

}

.preparation-tips ul li,
.expectations ul li {
    padding: 8px 0;
    position: relative;
  padding-left: 20px;
 font-size: 0.95rem;
    line-height: 1.5;
  opacity: 0.9;
}

.preparation-tips ul li::before,
.expectations ul li::before {
	  content: '✓';
	position: absolute;
   left: 0;
  color: #4CAF50;
     font-weight    :     bold;
     }

.action-buttons {
	 display: flex;
    gap: 20px;
    justify-content:  center;
    flex-wrap:      wrap;
}

.primary-btn,
.secondary-btn   {
   padding    : 15px 30px;
   -webkit-border-radius: 8px;
  text-decoration    :none;
    border-radius: 8px;
    display :     inline-block;
          -moz-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
	font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
   background-color: #ff6b6b;
          color: white;
}

.primary-btn:hover     {


   background-color     :   #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);


}

.secondary-btn {
  background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
	 background-color    :     white;
    color    :        #667eea;
}

.thankyou-image img {
	width: 100%; 
   height     :   auto; 
    border-radius: 12px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.trust-indicators {
   padding:    80px 20px;
   background-color: #f8f9fa;
}

.trust-container {
    max-width: 1000px;
   margin: 0 auto;
        text-align: center;
}

.trust-indicators h2 {
   font-size: 2.5rem;
  margin-bottom: 40px;
		color: #2c3e50;
}

.trust-stats
	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
	
}

.trust-stat {


    background: white;
    padding: 30px 20px;
   border-radius   :  12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);

}

.trust-number  {
    display:block;
    font-size   :2.5rem;
  font-weight: 700;
  color: #2c5aa0;
   margin-bottom: 15px;
} 

.trust-stat p {
   color: #666;
	   font-size: 1rem;
	  line-height: 1.5;
}@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-item,
    .approach-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .approach-item:nth-child(even) .approach-image,
    .approach-item:nth-child(even) .approach-content {
        order: unset;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        gap: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-section,
    .mission-statement,
    .team-approach,
    .expertise-areas,
    .results-impact,
    .thankyou-hero {
        padding: 80px 15px 60px;
    }
    
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .approach-item {
        padding: 25px;
    }
    
    .step-item,
    .preparation-tips,
    .expectations {
        padding: 20px;
    }
}.about-text p
{
   margin-bottom: 20px;
  line-height: 1.8;
	
}