* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.hero {
  min-height: 80vh;
  background: url("https://oaidalleapiprodscus.blob.core.windows.net/private/org-4AMYvlg9Ohd5fDIMWO6mU8M7/user-8E0EEcyf3s89aEyGw8uAt2sD/img-N1Ur5tuDwdC7o6avhHFfse0d.png?st=2024-12-18T17%3A49%3A41Z&se=2024-12-18T19%3A49%3A41Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-12-18T00%3A33%3A11Z&ske=2024-12-19T00%3A33%3A11Z&sks=b&skv=2024-08-04&sig=sXGj1jz49M7drtuTGyU7IppufcVBN59hPlYymkm7krI%3D") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Made overlay less dark */
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact {
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  margin-bottom: 2rem;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}