body, html {
  margin: 0;
  padding: 0;

}

.under-construction {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f8f9fa;
}

.construction-content {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.construction-content h1 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.construction-content p {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.6;
}

.contact-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn, .home-btn {
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-btn {
  background-color: #009fb4;
  color: white;
}

.home-btn {
  background-color: #1b1464;
  color: white;
}

.contact-btn:hover, .home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}