body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  text-align: center;
}
.header {
  padding: 20px;
  font-size: 32px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.8);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
  padding: 20px;
}
.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 20px;
}
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fbbc05;
  color: black;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button:hover {
  background-color: #ffa000;
}
.trust-section {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.trust-section p {
  margin: 10px 0;
}
.footer {
  padding: 15px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 14px;
}
.telegram-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0088cc;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s;
}
.telegram-button:hover {
  background-color: #0077b5;
}
.red {
  color: #ea4335;
}
