* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.container {
  width: 100%;
  padding: 20px;
}

.content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

p {
  font-size: 1.2em;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 40px;
}

.construction-icon {
  color: #3498db;
  animation: swing 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}

@media (max-width: 768px) {
  .content {
    padding: 40px 30px;
  }

  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .logo {
    max-width: 220px;
  }
}
