.footer {
  background-color: #f8f9fa;
  padding: 40px 0;
  color: #333;
  text-align: center;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__logo-section {
  text-align: center;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 50px;
  height: auto;
}

.logo-text {
  display: inline-block;
  font-size: 1.5em;
  font-weight: bold;
  color: #08ccfc;
  margin-left: 10px;
}

.footer__description {
  font-size: 1em;
  color: #666;
  max-width: 300px;
  margin: 0 auto;
}

.footer__nav-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer__links a {
  text-decoration: none;
  color: #08ccfc;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #0056b3;
}

.footer__telegram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #08ccfc;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.footer__telegram-button:hover {
  background-color: #007bb5;
}

.footer__telegram-button i {
  font-size: 1.2em;
}

.footer__bottom {
  margin-top: 30px;
  font-size: 0.9em;
  color: #666;
}

/* Адаптивные стили для экранов от 768px */
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__logo-section {
    margin-bottom: 0;
    text-align: left;
  }

  .footer__nav-section {
    flex-direction: row;
  }
}
