body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #222;
}

.tg-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 16px 0 8px 0;
}

.tg-logo {
  display: flex;
  align-items: center;
  margin-left: 24px;
  font-weight: 700;
  font-size: 20px;
  color: #222;
}

.tg-logo img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.tg-banner {
  width: 100%;
  background: #29b6f6;
  color: #fff;
  text-align: center;
  padding: 10px 0; /* уберите боковые отступы */
  font-size: 17px;
  font-weight: 400;
  box-sizing: border-box;
  margin: 0;
}

.tg-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  padding: 0 16px;
}

.tg-profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 18px;
}

.tg-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 18px 0;
  color: #222;
  text-align: center;
}

.tg-desc {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}

.tg-desc p {
  margin: 0 0 16px 0;
}

.tg-top {
  font-size: 20px;
  font-weight: 600;
}

.tg-top-arrow {
  display: inline-block;
  color: #7c3aed;
  font-size: 22px;
  font-weight: 700;
}

.tg-top-text {
  font-size: 13px;
  color: #7c3aed;
  font-weight: 700;
  letter-spacing: 1px;
}

.tg-btn {
  display: inline-block;
  margin: 24px 0 0 0;
  padding: 14px 38px;
  background: #4ade80;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(76, 220, 128, 0.15);
  transition: background 0.2s;
}

.tg-btn:hover {
  background: #22c55e;
}

.tg-footer-links {
  margin-top: 32px;
  font-size: 15px;
  color: #888;
  text-align: center;
}

.tg-footer-links a {
  color: #29b6f6;
  text-decoration: none;
  margin: 0 4px;
}

.tg-footer-links a:hover {
  text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 600px) {
  .tg-header {
    padding: 14px 0 8px 0;
  }
  .tg-logo {
    margin-left: 12px;
    font-size: 19px;
  }
  .tg-logo img {
    width: 28px;
    height: 28px;
  }
  .tg-banner {
    font-size: 15px;
    padding: 10px 0;
    text-align: center;
  }
  .tg-main {
    margin-top: 24px;
    padding: 0 8px;
  }
  .tg-profile-img {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }
  .tg-title {
    font-size: 22px;
    margin-bottom: 18px;
    margin-top: 0;
    font-weight: 700;
  }
  .tg-desc {
    font-size: 17px;
    margin-bottom: 22px;
    font-weight: 600;
  }
  .tg-desc p {
    margin: 0 0 14px 0;
    line-height: 1.4;
  }
  .tg-top {
    font-size: 17px;
    margin-bottom: 0;
  }
  .tg-top-arrow {
    font-size: 18px;
  }
  .tg-top-text {
    font-size: 11px;
  }
  .tg-btn {
    font-size: 17px;
    padding: 14px 28px;
    margin-top: -15px;
    margin-bottom: 22px;
    border-radius: 22px;
  }
  .tg-footer-links {
    font-size: 13px;
    margin-top: 20px;
  }
}