* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

.logo-svg {
  width: 120px;
  height: 90px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.water-drop {
  animation: dropPulse 2s ease-in-out infinite;
}

.leaf-left, .leaf-right, .lower-leaf-left, .lower-leaf-right {
  animation: leafSway 3s ease-in-out infinite;
}

.leaf-right, .lower-leaf-right {
  animation-delay: 0.5s;
}

.text-container {
  text-align: center;
}

.main-text {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.letter {
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.letter:hover {
  transform: translateY(-5px);
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.i1, .r1, .u, .s {
  color: #2B9B9B;
}

.r2, .i2, .g1 {
  color: #7CB342;
}

.tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #666;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Animations */
@keyframes dropPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes leafSway {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
  
  .logo {
    padding: 40px 30px;
  }
  
  .main-text {
    font-size: 36px;
  }
  
  .logo-svg {
    width: 100px;
    height: 75px;
  }
  
  .tagline {
    font-size: 10px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .main-text {
    font-size: 28px;
  }
  
  .logo-svg {
    width: 80px;
    height: 60px;
  }
  
  .tagline {
    font-size: 9px;
    letter-spacing: 1px;
  }
}
