body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f5f5f5;
  padding: 20px;
}

.contact-box {
  max-width: 600px;
  width: 100%;
  background: #622fad;
  padding: 90px;
  color: white;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.contact-box h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

.contact-box p {
  font-size: 16px;
  line-height: 1.6;
}

.contact-box a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.info {
  margin: 20px;
  font-size: 18px;
}

.icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.icons a {
  font-size: 30px;
  transition: transform 0.3s ease;
}

.icons a:hover {
  transform: scale(1.2);
}

.fa-youtube {
  color: #ff0000;
}

.fa-telegram {
  color: #0088cc;
}

.fa-whatsapp {
  color: #25d366;
}

@media (max-width: 576px) {
  .contact-box {
    padding: 20px;
  }

  .contact-box h2 {
    font-size: 24px;
  }

  .contact-box p {
    font-size: 12px;
  }
  


}
