body {
  margin: 0;
  font-family: sans-serif;
  /* Choose a modern font */
  background: linear-gradient(to bottom, #6b6b6b, #000);
  /* Grey to black gradient */
  color: white;
  /* White text */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Ensure full viewport height */
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center horizontally */
  text-align: center;
  /* Center text within the header */
  padding: 20px;
}

.hero-image {
  width: 100%;
  /* Image takes full width */
  max-height: 500px;
  /* Set a maximum height */
  object-fit: cover;
  /* Maintain aspect ratio and cover the area */
  display: block;
  /* Prevents a small space below image */
}

.hero-text {
  margin-top: 40px;
  /* Space between image and text */
}

h1 {
  margin: 30px 0;
  /* Space between headings */
}

h2 {
font-size: 1.2em;
font-weight: 300;
margin: 10px;
}

.inquiry-button {
  display: inline-block;
  /* Make it a block element for better styling */
  margin-top: 30px;
  padding: 15px 30px;
  background-color: #3477f7;
  /* Blue button color */
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
  /* Smooth hover effect */
}

.inquiry-button:hover {
  background-color: #245ec9;
  /* Darker blue on hover */
}