* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #fff;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("assets/background.jpg") center/cover no-repeat;
  
}

/* Light white overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
}

/* Center content */
.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
}

/* Logo */
.logo {
  
  width: 100%;
}

/* CTA Button */
.cta {
  background: #2e9c5b;
  color: #fff;
  border: none;
  padding: 14px 38px;
  border-radius: 30px;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #237a47;
  transform: translateY(-2px);
}
