/* Reset and base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f9fc;
  color: #333;
}

/* Centered container */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
  background: linear-gradient(to right, #dfe9f3, #ffffff);
}

/* Main box styling */
.construction-box {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.construction-box h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #e67e22;
}

.construction-box p {
  font-size: 1.2em;
  line-height: 1.6;
}
