

.about-section {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(235, 147, 10, 0.15);
  color: white;
  padding: 44px 60px;
  border-radius: 16px;
  margin-bottom: 50px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-container h2,
.about-page h2 {
  font-size: 20px;
  margin-bottom: 33px;
  font-weight: bold;
  text-transform: uppercase;
}

.about-container p,
.about-page p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #ddd;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
}

.stat {
  flex: 1 1 200px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.stat strong {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.stat span {
  font-size: 14px;
  color: #FFFFFF;
}

.contacts {
  display: flex;
  justify-content: center;
  gap: 20px;
  justify-content: center;
}

.contacts-desc {
    font-size: 20px;
    text-transform: uppercase;
}

.btn-about {
  flex: 1;
  background: #f2b337;
  display: inline-flex;
  align-items: center;
  justify-content: center; 
  gap: 8px; 
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.btn-about::before {
  content: '';
  width: 38px;
  height: 38px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.telegram-about::before {
    background-image: url('../img/icons/contact-telegram.svg');
}

.email-about::before {
    background-image: url('../img/icons/contact-mail.svg');
}

.btn:hover {
  background-color: #fb8c00;
}


@media (max-width: 1024px) {
  .about-section {
    padding: 32px 40px;
  }

  .about-container h2 {
    font-size: 18px;
  }
  .about-section {
    padding: 20px 10px;
    text-align: left;

  }

  .about-container p {
    text-align: center;
  }
  .stat {
    padding: 0px;
    flex: 1 1 100px;
  }
  .stat strong {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .stat span {
    font-size: 13px;
  }

  .btn-about {
    font-size: 18px;
    padding: 12px 16px;
  }

  .btn-about::before {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .stats {
    flex-direction: column;
    gap: 16px;
  }

  .contacts {
    flex-direction: column;
    align-items: center;
  }

  .contacts-desc {
    text-align: center;
    font-size: 18px;
  }

  .btn-about {
    width: 100%;
    justify-content: center;
  }

  .about-container h2 {
    text-align: center;
  }

  .about-container p {
    font-size: 16px;
  }

  .btn-about::before {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .btn-about {
    font-size: 16px;
    padding: 10px 14px;
  }

  .btn-about::before {
    width: 24px;
    height: 24px;
  }

  .contacts-desc {
    font-size: 16px;
  }
}