
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body, html {
  height: 100%;
  scroll-behavior: smooth;
}
.hero {
  position: relative;
  height: 100vh;
  background: url('background.jpg') no-repeat center center/cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.logo img {
  max-height: 80px;
}
.contact-watermark {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.15);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}
.services, .packages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.package {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #fafafa;
}
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 20px;
}
a.button {
  display: inline-block;
  padding: 10px 20px;
  background: green;
  color: white;
  border-radius: 6px;
  margin-top: 10px;
  text-decoration: none;
}
