
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to right, #f8f9fa, #e0c3fc);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}
.container {
  background-color: #ffffffcc;
  border-radius: 20px;
  padding: 50px;
  max-width: 700px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #7b1fa2;
}
p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.contact-info {
  margin-bottom: 30px;
}
.contact-info p {
  margin: 8px 0;
}
a {
  color: #6a1b9a;
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  text-decoration: underline;
}
.social {
  margin-top: 10px;
}
.social a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.social a:hover {
  transform: scale(1.1);
}
.logo {
  margin-bottom: 25px;
}
.logo img {
  width: 80px;
  height: auto;
}
