* {
	margin: 0;
  padding: 0px;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
                    color: #333;
  background-color: #f8f9fa;
}

.container  
  {
   max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
}

.main-navigation {
    background     :#fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
  top: 0;
   z-index: 1000;
}

.nav-container {

         max-width: 1200px;
    margin: 0 auto;
   display: flex;
   justify-content: space-between;
	align-items: center;
  padding: 1rem 20px;
}

.nav-brand .brand-logo {
  height: 45px;
   width: auto; 
	
}

.nav-menu {

    display: flex;
     gap: 2rem;}



.nav-link 
 {
  text-decoration: none;
  color: #333;
    font-weight: 500;
   transition: color 0.3s ease;
   padding: 0.5rem 0;
   position: relative;
}

.nav-link:hover, .nav-link.active {
    color    :     #2980b9;


}

.nav-link.active::after {
    left: 0; 
	   position: absolute; 
	   background-color: #2980b9; 
		 bottom: -5px; 
	  content: ''; 
	    width: 100%; 
	   height: 2px;
}

.nav-toggle {
        display: none;
    flex-direction: column;
   cursor: pointer;
  width: 30px;
    height: 30px;
   justify-content: space-between; 
	


}

.nav-toggle span {
                    transition: all 0.3s;
    height: 3px;
   background-color: #333;
   transform-origin: center;
}

.hero-section {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :white;
    padding: 80px 0;


} 

.hero-content {
  max-width: 1200px;
   margin: 0 auto;
   display    :   grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
    align-items: center;
    padding: 0 20px;
}

.hero-text h1 {
       font-size: 3.2rem;
    font-weight: 700;
   margin-bottom: 20px;
   line-height     :      1.2;
}

.hero-text p {
   font-size    : 1.2rem;
   margin-bottom: 30px;
   opacity: 0.9;
}

.hero-buttons  {
 display: flex;
   gap: 15px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
	font-weight: 600;
        transition: all 0.3s ease;
    display   :       inline-block;
    text-align: center;
}

.btn-primary {
  background-color :    #e74c3c;
   color: white;
}

.btn-primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-secondary:hover   {
	  background-color: rgba(255,255,255,0.1);


}

.hero-image img {
    width: 100%;
   height: auto;
      border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}


.overview-section {
   padding: 80px 0;
       background-color: #fff;
}

.section-header   {
  text-align: center;
   margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
  color: #2c3e50;
    font-size: 2.5rem;
   font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
   color: #7f8c8d;
   max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
   text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   padding: 40px 20px;
    background-color: #f8f9fa;
   border-radius: 12px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  margin-bottom: 25px;
}

.icon-wrapper {
    width: 80px;
  height: 80px;
   margin: 0 auto;
    border-radius :       50%;
   display: flex;
    align-items: center;
   justify-content: center;
  position: relative; 
	
}  

.crisis-icon {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	
}

.motivation-icon	{
  background: linear-gradient(45deg, #4834d4, #686de0);
}

.growth-icon {
  background: linear-gradient(45deg, #00d2d3, #54a0ff);
}

.icon-wrapper::after


{
  content: ''; 
    position: absolute; 
   width: 40px; 
   height: 40px; 
  background-color: rgba(255,255,255,0.3); 
               border-radius: 50%;
}

.feature-card h3 {
  font-size: 1.4rem;
      color   :    #2c3e50;
   margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
  color   :   #7f8c8d;
  line-height: 1.6;
}

.services-section {
                    padding: 80px 0;
  background-color: #f8f9fa;
}

.services-section h2 {
   text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
   font-weight: 600; 
	
}

.service-item {

	    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
          align-items: center;
   margin-bottom: 80px;
      padding: 0 20px;

}

.service-item.reverse {
   direction: rtl;
}

.service-item.reverse > * {
   direction: ltr;

}

.service-item img {
   width: 100%;
   height  :auto;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-info h3 {
       font-size: 1.8rem;
   color: #2c3e50;
   margin-bottom: 20px;
   font-weight: 600;

}

.service-info p {
  color: #555;
   margin-bottom: 25px;
	 line-height: 1.7;
}

.service-info ul {
    list-style: none;
   padding: 0;
}

.service-info ul li {
    padding: 8px 0;
   color :   #666;
  position: relative;
 padding-left: 25px;
}

.service-info ul li::before {
  content: '✓';
  position: absolute;
    left: 0;
  color  :       #27ae60;
    font-weight: bold;
}

.cta-section {

  background: linear-gradient(135deg, #2980b9, #3498db);
	 color: white;
  padding: 80px 0;

}

.cta-content  
  {
  display: grid;
  grid-template-columns: 1fr 1fr;
       gap: 50px;
    align-items: center;
   margin-bottom: 40px;
}

.cta-text h2 {
    font-size:      2.8rem;
   margin-bottom: 20px;
  font-weight: 700;
}

.cta-text p		{
    font-size: 1.1rem;
  margin-bottom: 30px;
   opacity: 0.9;
    line-height: 1.6;
}

.cta-stats {
  display: flex;
    gap: 40px;
                    margin-top   :30px;
}

.stat-item {
  text-align: center;
}

.stat-number {


   display: block;
    font-size: 2.5rem;
	 font-weight: bold;
  color: #f39c12;
	}

.stat-label {
  font-size: 0.9rem;
    opacity    :  0.8;
}

.cta-image img {
		 width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.cta-button-wrapper {

   text-align: center;

}

.btn-cta {
  display: inline-block;
    background-color: #e74c3c;
     color: white;
    padding: 18px 40px;
    text-decoration: none;
   border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta:hover {
      background-color: #c0392b;

  transform: translateY(-2px);
}

.contact-section {
  padding: 80px 0;
               background-color:#fff; 

}

.contact-header  {
   text-align :     center;
    margin-bottom: 60px;
}

.contact-header h2 {
   font-size :      2.5rem;
    color: #2c3e50;
  margin-bottom: 20px;
   font-weight: 600;
}

.contact-header p {
   font-size: 1.1rem;
   color  :      #7f8c8d;
  max-width    :       700px;
          margin: 0 auto;
}

.contact-content {
   display:  grid;
        grid-template-columns: 2fr 1fr;
   gap: 60px;
}

.contact-form {
   background-color: #f8f9fa;
  padding   :       40px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.form-group {
   margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 12px 15px;
    border: 2px solid #e0e0e0;
   border-radius: 8px;
	font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit; 
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #3498db;
}

.form-group textarea	{
   resize: vertical;
   min-height: 100px;
}

.submit-btn {
  background-color: #2980b9;
    color: white;
      padding: 15px 30px;
   border: none;
    border-radius: 8px;
       font-size   :   1.1rem;
  font-weight   :    600;
    cursor: pointer;
    transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
    background-color: #21618c;
  transform: translateY(-2px);


}

.contact-info{
   padding: 20px 0;
}

.info-item {
   margin-bottom: 40px;
}

.info-item h4 {
        color: #2c3e50;
   font-size: 1.2rem;
  margin-bottom: 15px;
   font-weight: 600;
}

.info-item p {
   color: #7f8c8d;
  line-height: 1.6;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
  padding: 50px 0 20px;
}

.footer-content {
	 display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
         margin-bottom: 40px;
} 

.footer-brand img {
    height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
    opacity   :       0.8; 
	    line-height: 1.6;
}

.link-group h4
	{
   margin-bottom: 20px;
	 color: #fff;
	font-weight: 600;
}

.link-group a {
     display: block;
   color :#bdc3c7;
   text-decoration :    none;
    margin-bottom: 10px;
   transition: color 0.3s ease;
	}

.link-group a:hover {
    color    :  #3498db;


}

.footer-contact h4 {
 margin-bottom: 20px;
  color: #fff;
                    font-weight: 600;
}

.footer-contact p {
   opacity: 0.8;
  margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
  padding-top: 20px;
   text-align: center;
    opacity: 0.7;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
        gap: 30px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-stats {
        justify-content: center;
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .btn-primary, .btn-secondary, .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #34495e, #2c3e50);
  color: white;
	padding: 100px 0 60px;
  text-align: center;
}

.about-hero-content h1 {
	    font-size: 3rem;
  font-weight     :        700;
   margin-bottom: 25px;


}

.about-hero-content p {
	font-size: 1.3rem;
  max-width: 800px;
    margin: 0 auto;
   line-height   :       1.7;
        opacity: 0.9;
	
}

.company-story {
    padding: 80px 0;
   background-color: #fff;
}

.story-content {
	display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
}

.story-text h2{
	   font-size :        2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
  font-weight: 600;
	}

.story-text p {
    color: #555;
  line-height: 1.7;
   margin-bottom: 20px;
 font-size: 1.1rem;
}

.story-stats {
    display: flex;
    gap: 40px;
   margin-top: 40px;
}

.story-stat {
	text-align: center;
}

.stat-value {
    display: block;
	 font-size: 2.2rem;
    font-weight: bold;
   color: #e74c3c;
   margin-bottom: 8px;
}

.stat-desc {
   color: #7f8c8d;
    font-size :       0.95rem;
}

.story-image img {
    width: 100%;
       border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-section {
  padding: 80px 0;
   background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size  :     2.5rem;
   color: #2c3e50;
         margin-bottom     :   60px;
  font-weight: 600;
}

.team-member     {

  display: grid;
    grid-template-columns: 300px 1fr;
    gap:40px;
   align-items: center;
    margin-bottom:        60px;
        background: white;
  padding: 40px;
	 border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}


.team-member.reverse {
   grid-template-columns: 1fr 300px;
  direction: rtl;
}

.team-member.reverse > * {
	direction: ltr;
}

.member-image img {
   width: 100%;
   height: 280px;
    object-fit: cover;
   border-radius: 12px;
}

.member-info h3 {

	   font-size: 1.8rem;
    color: #2c3e50;
  margin-bottom: 8px;
		font-weight: 600;}

.member-role {
   color:#e74c3c;
   font-weight: 600;
   margin-bottom: 20px !important;
   font-size :       1.1rem;
}

.member-description {
   color :  #666;
    line-height: 1.6;
   margin-bottom    :      25px;
}

.member-credentials {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.member-credentials span {
    background: #ecf0f1;
    color: #2c3e50;
   padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
   font-weight: 500;
}

.values-section {
    padding     :        80px 0;
  background-color     : #fff;
}

.values-section h2 {
    text-align: center;
	   font-size: 2.5rem;
	   color: #2c3e50;
	    margin-bottom: 60px;
	    font-weight: 600;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
}

.value-item {
  text-align: center; 
	                    padding: 40px 25px;
}

.value-icon {
    margin-bottom: 30px;

}

.icon-circle {
   position: relative;
   height    :90px;
   margin: 0 auto;
   width: 90px;
  border-radius: 50%;
}

.icon-circle.integrity {
  background: linear-gradient(45deg, #2980b9, #3498db);
}

.icon-circle.results {
  background: linear-gradient(45deg, #27ae60, #2ecc71); 

}


.icon-circle.innovation {
  background: linear-gradient(45deg, #8e44ad, #9b59b6);
}

.icon-circle.support {
  background: linear-gradient(45deg, #e67e22, #f39c12); 

}  

.icon-circle::after {
  content: '';
  position: absolute;
  top: 50%;
    left: 50%;
   width   :   45px;
   height: 45px;
  background: rgba(255,255,255,0.3);
	 border-radius: 50%;
  transform: translate(-50%, -50%);
}

.value-item h3 {
    font-size   : 1.5rem;
	color: #2c3e50;
   margin-bottom: 20px;
    font-weight: 600;
}

.value-item p {

	    color: #666;
    line-height: 1.6;

}

.approach-section {
    padding: 80px 0;
				 background-color  :#f8f9fa;
}

.approach-content {

	  gap:    60px;
   display: grid;
  grid-template-columns: 1fr 1fr;
   align-items: center;
}

.approach-text h2 {
   color: #2c3e50;

	  margin-bottom: 25px;

	  font-size :    2.5rem;

	    font-weight: 600;
}

.approach-text > p {
   color    :   #555;
   line-height: 1.7;
   margin-bottom: 35px;
    font-size: 1.1rem;
}

.approach-pillars {
    display: flex;
    flex-direction: column;
  gap: 25px;}

.pillar h4 {
   color: #e74c3c;
  font-size:    1.2rem;
    margin-bottom:10px;
   font-weight   :    600;
}

.pillar p {
	color: #666;
	line-height: 1.6;

}

.approach-visual img {
	   width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.achievements-section {
  padding: 80px 0;
    background-color: #fff;
}

.achievements-section h2 {
   text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
         margin-bottom: 60px;
   font-weight     :        600;
}

.achievements-content {
	  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
     }

.achievement-item h3 {
  font-size: 1.6rem;
                    color: #2c3e50;
	margin-bottom  :        25px;
    font-weight: 600;
}

.achievement-item ul {
	  list-style: none;
    padding: 0;


}

.achievement-item li 
 {
    padding: 12px 0;
    color: #666;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}

.achievement-item li::before	{
  content: '★';
    position: absolute;
   left: 0;
  color: #f39c12;
      font-weight: bold;
  top    :12px;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 100px 0;
    text-align: center;
}

.thankyou-content {
  max-width: 600px;
    margin: 0 auto;
}

.success-icon {

	   margin-bottom: 30px;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
   margin :0 auto;
    position: relative;
    display: flex;
	 align-items :center;
  justify-content     : center;
}


.checkmark {
  width :  60px;
    height: 60px;
  position: relative;
}

.checkmark::after {
	  content: '✓';
  font-size: 40px;
	color     : white;
  font-weight: bold;}

.thankyou-content h1 {
   font-size: 3rem;
    margin-bottom: 20px;
         font-weight: 700;
}

.thankyou-subtitle {
  font-size: 1.2rem;
    opacity: 0.9;
  line-height: 1.6;
}

.next-steps {
   padding: 80px 0;
    background-color: #fff;
}

.next-steps h2 {
    text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
   font-weight: 600;
} 

.steps-timeline {
   max-width: 800px;
    margin    :  0 auto;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
    left: 30px;
   top: 0;
    bottom: 0;
   width: 4px;
    background: #ecf0f1;


}



.timeline-step {
   display   :       flex;
   align-items: flex-start;
   margin-bottom: 50px;
    position: relative;
}

.timeline-step.completed .step-number {


          background: #27ae60;}

.timeline-step.completed::after {
   background: #27ae60;
}

.step-number {
   width: 60px;
  height  :       60px;
  border-radius: 50%;
   background: #bdc3c7;
   color: white;
    display: flex;
 align-items: center;
   justify-content: center;
   font-weight: bold;
    font-size: 1.2rem;
	 margin-right: 30px;
  flex-shrink: 0;
  position: relative;
      z-index: 2;
}

.step-content  
  {
   flex: 1;
  padding-top: 10px;
} 

.step-content h3  {
   color: #2c3e50;
	font-size: 1.4rem;
   margin-bottom: 10px;
   font-weight: 600;
}

.step-content p {
    color  :      #666;
   line-height:    1.6;
  margin-bottom :     8px;
}

.step-time {
  color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
}

.immediate-help {


   padding: 80px 0;
  background-color: #f8f9fa;}

.help-content {
   display: grid;
	    grid-template-columns: 1fr 1fr;
	   align-items: center;
	   gap    :    60px;
}

.help-text h2 {
    font-size: 2.2rem;
  color: #2c3e50;
	 margin-bottom: 25px;
    font-weight: 600;
} 

.help-text > p {
  color     :       #555;
  line-height: 1.7;
    margin-bottom: 30px;
  font-size: 1.1rem;


}

.immediate-resources {


  display: flex;
   flex-direction     :    column;
   gap: 20px;
}

.resource-item {
   padding: 20px;
    background: white;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.resource-item h4 {
   color :#2c3e50;
   margin-bottom: 10px;
   font-weight: 600;
}

.resource-item p {
   color: #666;
   line-height: 1.5;
    margin: 0;
}

.help-image img {
	    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);}

.emergency-contact {
   padding: 60px 0;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.emergency-info {
      text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.emergency-info h2 {
  font-size: 2.2rem;
   margin-bottom: 20px;
  font-weight: 600;
}

.emergency-info > p {

   font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-methods {
	display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 40px;
    max-width: 600px;
  margin: 0 auto;
}

.contact-method {
       text-align: center;
}

.contact-method h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
      font-weight: 600;
} 

.contact-detail {
   font-size     :  1.1rem;
   margin-bottom: 10px;
    font-weight: 500;
}

.availability {
   font-size: 0.9rem;
                    opacity: 0.8;
}

.testimonial-preview {
  background-color: #fff;
   padding: 80px 0;
}

.testimonial-preview h2

{
   text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight  :        600;
}

.testimonial-slider {
	position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-item {
   display: none;

	   text-align: center;

	   padding: 40px;
}

.testimonial-item.active 
 {
   display: block;
	
}

.testimonial-content p {
	font-size     :1.3rem;
   color: #555;
    line-height: 1.7;
  margin-bottom: 30px;
         font-style: italic;}

.testimonial-author {
  display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-weight: 600;
	 color :        #2c3e50;
   font-size: 1.1rem;
}

.author-role    {
   color: #7f8c8d;
    font-size: 0.95rem;
}

.testimonial-dots
{
   text-align: center;
}

.dot {

	   cursor: pointer;
    height: 12px;
   width: 12px;
		 margin:      0 5px;
	 background-color: #bdc3c7;
    border-radius: 50%;
	display: inline-block;
   transition: background-color 0.3s ease;}

.dot.active,
.dot:hover {
    background-color: #3498db;

}

.return-home {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
    text-align: center;
}

.return-content h2 {
   font-size: 2.5rem; 
    margin-bottom :     20px; 
   font-weight: 600;
}

.return-content p {
	font-size: 1.2rem;
  margin-bottom: 40px;
    opacity: 0.9;
	max-width: 600px;
         margin-left: auto;
   margin-right: auto;
}



.return-buttons {
	 display: flex;

    gap: 20px;

  justify-content: center;

         flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .approach-content,
    .help-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-member,
    .team-member.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        direction: ltr;
    }
    
    .story-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .steps-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-text h2,
    .values-section h2,
    .next-steps h2,
    .testimonial-preview h2 {
        font-size: 2rem;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .member-image img {
        height: 220px;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .checkmark-circle {
        width: 100px;
        height: 100px;
    }
    
    .checkmark::after {
        font-size: 32px;
    }
}