* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 20px;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a, #3b3b3b);
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.container {
  transform: translateY(-50px);
  text-align: center;
  padding: 2rem 3rem;
  /* background: rgba(255, 255, 255, 0.05); */
  background: #EFCE11;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: fadeIn 1s ease-out;
}

.logo {
  width: 200px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #4A4B4D;
}

p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  color: #4A4B4D;
}

.social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social a {
  color: #4A4B4D;
  font-size: 1.4rem;
  transition: transform 0.2s ease, color 0.3s ease;
  text-decoration: none;
}

.social a:hover {
  color: #ab182d;
  transform: translateY(-3px);
}

.social a i {
  margin-right: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(-50px); }
}

a#telephone {
  width: 100%;
  position: relative;
  font-size: 1.2rem;
}