body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  color: #474747;
  background: #233746;
}

.construction-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    linear-gradient(135deg, rgba(35, 55, 70, 0.92) 0%, rgba(0, 106, 166, 0.88) 100%),
    url('../img/ooi_lammers.jpg') center bottom / cover no-repeat;
}

.construction-card {
  width: 100%;
  max-width: 640px;
  background: #ffffff;
  border-radius: 20px;
  border: 3px solid #233746;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.construction-header {
  background: linear-gradient(90deg, #233746 0%, #006aa6 100%);
  color: #ffffff;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.construction-header img {
  max-width: 320px;
  width: 100%;
  margin-bottom: 1.5rem;
}

.construction-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.construction-header p {
  margin-bottom: 0;
  opacity: 0.9;
  font-size: 1rem;
}

.construction-body {
  padding: 2rem;
}

.construction-body h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #233746;
  margin-bottom: 1.25rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #eee;
}

.contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-list li:first-child {
  padding-top: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff9e19;
  color: #233746;
  border-radius: 50%;
  font-size: 1rem;
}

.contact-details strong {
  display: block;
  color: #233746;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}

.contact-details a {
  color: #006aa6;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.construction-footer {
  background: #233746;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 1rem;
  font-size: 0.8125rem;
}

.construction-footer a {
  color: #ff9e19;
  text-decoration: none;
}

.construction-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 575px) {
  .construction-header {
    padding: 2rem 1.25rem 1.5rem;
  }

  .construction-header h1 {
    font-size: 1.5rem;
  }

  .construction-body {
    padding: 1.5rem 1.25rem;
  }
}
