* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: white;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 25px;
}

p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact {
  margin: 20px 0;
  font-size: 14px;
}

.contact a {
  color: #000;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.social {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.social img {
  width: 100px;
  height: 100px;
  transition: transform 0.2s ease;
}

.social img:hover {
  transform: scale(1.1);
}