.about {
  padding: 100px 20px;
  background-color: #fefefe;
  color: #333;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}

.about-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: stretch;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-text p {
  margin-bottom: 20px;
}

.about-graphic {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  background-color: #02dece;
  color: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
  min-height: 75px; /* увеличенная высота */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-block:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.info-number {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-label {
  font-size: 14px;
  opacity: 0.9;
}

.about-frame {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  
}

.about-frame h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
}

.about-frame p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #222;
}

/* Анимация появления */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .about {
    padding: 80px 20px;
  }

  .about-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .about-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 24px;
  }

  .about-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .info-block {
    width: 100%;
    max-width: 300px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .info-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }

  .about-text {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .about-text p {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    padding: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    text-align: left;
  }
}



