/* Основные стили */
@font-face {
  font-family: Garet;
  src: url(/theme/font/Garet.otf);
}

body {
  background-color: #f8f8f8;
  font-family: Garet, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

header {
  margin-top: 20px;
}

.logo {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px;
  max-width: 640px;
  text-align: center;
}

h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.phone-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.phone-number {
  font-size: 24px;
  color: #007BFF;
  text-decoration: none;
}

.social-media {
  margin-bottom: 30px;
}

.social-media p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.social-icons img {
  width: 48px;
  height: 48px;
  margin: 0 10px;
  transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
  transform: translateY(-3px);
}

.app-download {
  margin-bottom: 20px;
}

.app-download p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.app-icons img {
  width: 250px;
  height: auto;
  margin: 5px;
  transition: transform 0.3s ease-in-out;
}

.app-icons img:hover {
  transform: translateY(-3px);
}

footer {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

/* Адаптация для мобильных устройств */
@media only screen and (max-width: 480px) {
  .logo {
      max-width: 300px;
  }

  h1 {
      font-size: 20px;
  }

  .phone-number {
      font-size: 20px;
  }

  .social-icons img {
      width: 40px;
      height: 40px;
  }
}