* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom right, #c1cdff, #f4eaff);
  color: #1c004b;
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 100px 20px 60px;
}

.hero img {
  width: 250px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #2b0066;
}

.hero p {
  font-size: 20px;
  color: #3c0055;
  margin-top: 10px;
}

.contact-section {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.buttons a {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: white;
  transition: all 0.3s ease;
}

.buttons a.email {
  background: #6b3cf9;
}

.buttons a.telegram {
  background: #fff;
  color: #6b3cf9;
}

.buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2b0066;
}

.faq-item {
  margin-bottom: 30px;
  background: #d5d8ff;
  padding: 20px 25px;
  border-radius: 14px;
}

.faq-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a0040;
}

.faq-item p {
  font-size: 16px;
  color: #444;
}

footer {
  text-align: center;
  padding: 50px 20px 30px;
  font-size: 14px;
  color: #777;
}
