.page-header {
  background: linear-gradient(135deg, #8B7355 0%, #d4b483 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
}

.page-header h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.page-header p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.about-intro {
  margin-bottom: 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: #2C2C2C;
  margin-bottom: 20px;
  font-size: 32px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.about-mascot {
  text-align: center;
}

.mascot-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #f8f9fa;
  padding: 20px;
}

.mission {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px;
  border-radius: 20px;
  margin-bottom: 80px;
  text-align: center;
}

.mission-content h2 {
  color: #8B7355;
  margin-bottom: 20px;
  font-size: 36px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.mission-content p {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139,115,85,0.15);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #2C2C2C;
  margin-bottom: 15px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

/* Адаптация под телефон */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-mascot {
    order: 1;
  }
  
  /* Маскот на телефоне */
  .mascot-img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
    padding: 15px;
  }
  
  .mission {
    padding: 40px 20px;
  }
  
  .mission-content h2 {
    font-size: 28px;
  }
  
  .mission-content p {
    font-size: 16px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 40px 15px;
  }
  
  .mascot-img {
    max-width: 100%;
    padding: 10px;
  }
  
  .about-text h2 {
    font-size: 24px;
  }
}