.about-hero {
  background: linear-gradient(rgba(52, 73, 93, 0.85), rgba(44, 62, 80, 0.85)), url('../maps/uncertainty_resilience_coaching_5.webp');
    background-size: cover;
  background-position: center;
    height   :     60vh;
  display  :    flex;
   align-items: center;
   text-align: center;
   color: white;
   margin-top: 80px;
}

.about-hero-content h1 {
        font-size: 3rem;
    margin-bottom: 1rem;
   font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
          margin: 0 auto;
  opacity: 0.9;
}

.story-section


{
    padding: 80px 0;
         background: white;


}  

.story-grid {
      display   :  grid;
    grid-template-columns: 1fr 1fr;
      gap: 4rem;
  align-items: center; 

}

.story-content h2  
  {
    font-size  :    2.5rem; 
  margin-bottom: 2rem; 
   color: #2c3e50; 
   font-weight   :        600;
}

.story-content p {
           font-size: 1.1rem;
    margin-bottom: 1.5rem;
  line-height: 1.8;
  color:      #555;


}

.achievements {
  display: flex;
    gap: 2rem;
  margin-top: 2rem;
}

.achievement-item
{
     text-align: center;
}

.achievement-number {
    font-weight :   700;
  display: block;
    margin-bottom: 0.5rem;
   color: #e74c3c;
   font-size: 2.2rem;

}

.achievement-text {
  font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.methodology-section {
   padding: 80px 0;
  background    :   #f8f9fa;
}

.section-title {
   text-align   :     center;
   font-size: 2.5rem;
  margin-bottom    :  3rem;
  color: #2c3e50;
	 font-weight: 600;
}

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.method-card {
    background:     white;
   padding: 2.5rem 2rem;
	border-radius: 15px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.method-card h3 {
                    color: #2c3e50;
  margin-bottom    :1rem;
   font-size  :1.4rem;
    font-weight: 600;
}


.method-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
   padding: 80px 0;
  background: white;
}

.team-description     {
   text-align: center; 
  max-width: 800px; 
    margin: 0 auto 3rem;


}

.team-description p 
 {
   font-size: 1.1rem;
    line-height: 1.7;
  color: #555;
}

.expertise-grid {
   display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.expertise-card     {

    background: #f8f9fa;
  border-radius    :     15px;
    overflow:    hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
     }

.expertise-card:hover {
  transform: translateY(-8px);
}

.expertise-card img {
  width: 100%;
  height: 220px;
    object-fit: cover;
}

.expertise-card h3 {
	 font-size :1.3rem;
	 padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50;
   font-weight: 600;
}

.expertise-card p {
  padding: 0 1.5rem 1.5rem;
	color: #666;
   line-height: 1.6;
}

.values-section {

    padding: 80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;


}

.values-section .section-title {
    color     :    white;
}

.values-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;

}

.value-item {
    text-align: center;
  padding: 2rem 1rem;
}

.value-item h3 {
    font-size: 1.4rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.value-item p {
    opacity     :   0.9;
    line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .achievements {
        justify-content: center;
        gap: 1.5rem;
    }

    .methodology-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}