body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fbfc;
  color: #333;
}

.hero {
  background: linear-gradient(135deg, #007acc, #00c6ff);
  color: white;
  text-align: center;
  padding: 3em 1em;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.3em;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.cta-button {
  background: white;
  color: #007acc;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e0f0ff;
}

.contact-options {
  padding: 2em;
  max-width: 600px;
  margin: auto;
}

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

.contact-options li {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.contact-options a {
  color: #007acc;
  text-decoration: none;
  font-weight: bold;
}

.form-section {
  background: #ffffff;
  padding: 2em;
  max-width: 600px;
  margin: 2em auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

form label {
  display: block;
  margin-top: 1em;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 0.8em;
  margin-top: 0.5em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

form button {
  margin-top: 1.5em;
  background: #007acc;
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #005fa3;
}

footer {
  text-align: center;
  padding: 2em;
  font-size: 0.9em;
  color: #666;
}