* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fffaf0;
  color: #3a3a3a;
  line-height: 1.6;
  padding-bottom: 60px;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.hero {
  background: linear-gradient(to bottom right, #a1c4fd, #c2e9fb);
  color: #2d2d2d;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.fade-in {
  animation: fadeIn 1.5s ease-in-out forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
  font-weight: 500;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

/* Animation trigger state */
.fade-in,
.fade-in-up {
  opacity: 0;
  transition: all 1s ease-out;
}

.appear {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Icon Styling */
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero {
  background: url('http://anjanamayurveda.com/images/background.jpg') no-repeat center center/cover;
  color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}