body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.hero {
  height: 100vh;
  background: linear-gradient(135deg, #0f766e, #115e59);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

h1, h2 {
  margin-bottom: 20px;
}

.buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 5px;
  background: white;
  color: #115e59;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}
