/* Reset / Basic Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: linear-gradient(135deg, #f7f7f7, #e1e1e1);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

h2 {
  color: red;
}

/* Container Styles */
.construction-container {
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 400px;
  margin: 0 20px;
}

/* Logo Header */
.logo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-header .logo {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.logo-header h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

/* Heading & Paragraphs */
.construction-container h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.construction-container p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress {
  width: 50%;
  height: 100%;
  background: #3498db;
  animation: progressAnimation 2s infinite alternate;
}

@keyframes progressAnimation {
  0% { width: 30%; }
  100% { width: 80%; }
}

/* Footnote */
.footnote {
  font-size: 0.85rem;
  color: #666;
}
