.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 150px 0 100px;
    color: white;
    text-align: center;
  position:      relative;
      overflow: hidden;
}

.about-hero::before	{
     content: '';
	 position: absolute;
   top: 0;
   left :   0;
    right: 0;
  bottom: 0;
  background: url('previews/portfolio_entrepreneurship_1.webp') center/cover;
    opacity: 0.15;
   z-index: -1;
     }

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
   font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p
{
		 font-size: 1.3rem;
    opacity: 0.9;
  max-width: 600px;
    margin: 0 auto;
}

.nav-link.active {
	color: #667eea;
  font-weight: 600;
}

.mission-section {
   padding: 100px 0; 
  background    :    white;

}

.mission-content {
    display: grid;
                    grid-template-columns: 1fr 1fr;
       gap:4rem;
    align-items: center;
}

.mission-text h2  
  {
  position: relative;

	   font-size: 2.5rem;

	  color: #333;

	  margin-bottom: 2rem;
}

.mission-text h2::after {
     content: '';
   position: absolute;
  bottom: -10px;
    left: 0;
   width    :       80px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
	}

.mission-text p {
	font-size: 1.1rem;

  color: #555;

  margin-bottom  : 1.5rem;

   line-height: 1.8;
}

.mission-image img {

  max-width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition :      transform 0.3s ease;
	}

.mission-image img:hover  
  {
  transform: scale(1.05);
}

.vision-section


{
       padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.vision-content {
    display: grid;
    align-items: center;
   grid-template-columns: 1fr 1fr;
                    gap: 4rem;
}

.vision-text h2 {
	font-size: 2.5rem;
   margin-bottom: 2rem;
    color: #333;
    position: relative;
}

.vision-text h2::after {
  content: '';
   position    :      absolute;
 bottom: -10px;
  left: 0;
 width: 80px;
    height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius   :2px;
}

.vision-text p {
	  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.8;}

.vision-image img {
    max-width: 100%;
       border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}

.vision-image img:hover {
  transform: scale(1.05);
}

.values-section {
   padding: 100px 0;
  background: white;
}

.values-grid {
    display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap     :2rem;
    margin-top: 4rem;
}

.value-card {
  background: #f8f9fa;
   padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
   transition     :    all 0.3s ease;
  border-left: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-left-color: #667eea;
  background: white;

}  

.value-card h3 {
  font-size: 1.4rem;
    margin-bottom: 1rem;
	color: #333;
    font-weight: 600;
}

.value-card p {
    color: #666;
  line-height : 1.7;
    font-size: 0.95rem; 

}

.team-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.team-content {
    display: grid;
      grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.team-text h3 {
   font-size: 2rem;
  margin-bottom: 2rem;
	 position: relative;
}

.team-text h3::after {
  content: '';
  position: absolute;
    bottom: -10px;
   left: 0;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}  

.team-text p {
  font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
  opacity: 0.9;
}

.team-image img {
    max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.achievements-section {
  padding: 100px 0;
		background: white;
}

.achievements-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
   margin-top: 4rem;
}

.achievement-item {
    text-align: center;
   padding: 2rem;
  border-radius  :        15px;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-10px);
}

.achievement-number {
   font-size: 3rem;
	 font-weight: 700;
         margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.achievement-text 
 {
  font-size: 1.1rem;
  font-weight: 500;
    opacity: 0.9;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .mission-content,
    .vision-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-content .vision-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-text h2,
    .vision-text h2,
    .team-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievement-number {
        font-size: 2.5rem;
    }
}