body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

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

header {
  margin-bottom: 2rem;
}

.logo-img {
  max-width: 200px;
  height: auto;
}

h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.construction-icon {
  font-size: 3rem;
  margin: 1rem 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.lead {
  font-size: 1.2rem;
  color: #34495e;
  margin-bottom: 2rem;
}

.content {
  text-align: left;
  margin-top: 2rem;
}

h2 {
  color: #2980b9;
  margin-top: 1.5rem;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

li::before {
  content: "✓ ";
  color: #27ae60;
  font-weight: bold;
  margin-right: 0.5rem;
}

.social-links {
  margin: 1rem 0;
}

.social-icon {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #7f8c8d;
}

@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}
