.contact-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.contact-header {
  text-align: center;
  padding: 20px;
  background: linear-gradient(120deg, #e3f2fd, #e1f5fe);
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.contact-description {
  font-size: 1.2em;
  color: #666;
}

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

.telegram-link {
  display: inline-block;
  font-size: 1.2em;
  color: #08ccfc;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #08ccfc;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.telegram-link:hover {
  background-color: #08ccfc;
  color: #fff;
}

.contact-form-section {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.form-title {
  text-align: center;
  font-size: 1.5em;
  color: #333;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-size: 1em;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.submit-button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #08ccfc;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #06a3d2;
}
