/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(0, 114, 188, 0.9),
      rgba(247, 147, 29, 0.8)
    ),
    url("https://assets.new.siemens.com/siemens/assets/api/uuid:70896e63-e25b-4a4a-9fc5-bc7fcdc9ade1/width:1024/quality:HIGH/70896e63-e25b-4a4a-9fc5-bc7fcdc9ade1-high.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding-top: 100px;
  margin-top: 100px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background: #f7931d;
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 147, 29, 0.4);
}

.cta-button:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 147, 29, 0.6);
}