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

html, body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

body {
  background-color: #f4f4f9;
  color: #333;
}

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

.hero {
  background: linear-gradient(135deg, #5B6F9E, #3F51B5);
  color: #fff;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  padding: 10px 20px;
  background-color: #ffcc00;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff9900;
}

.section {
  background-color: #fff;
  margin-bottom: 30px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.service {
  margin-bottom: 20px;
}

.service h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.service p {
  font-size: 1.1rem;
  color: #666;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 1rem;
  }

  .service h3 {
    font-size: 1.2rem;
  }

  .service p {
    font-size: 1rem;
  }
}
.melt {
  animation: meltDown 2.2s cubic-bezier(0.66, 0.03, 0.29, 1.02) forwards;
  transform-origin: top center;
  will-change: transform, filter, opacity;
}

@keyframes meltDown {
  0% {
    opacity: 1;
    transform: none;
    filter: none;
  }

  20% {
    transform: skewY(2deg) scale(1.02);
    filter: blur(1px) hue-rotate(10deg);
  }

  40% {
    transform: skewY(-4deg) scale(1.04);
    filter: blur(4px) hue-rotate(-10deg);
  }

  60% {
    transform: skewX(3deg) scale(0.98);
    filter: blur(6px) hue-rotate(40deg);
    opacity: 0.8;
  }

  80% {
    transform: translateY(20px) rotateZ(1deg) scale(1.03);
    filter: blur(8px) hue-rotate(120deg);
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(120vh) skewX(10deg) scale(1.1);
    filter: blur(10px) hue-rotate(360deg);
  }
}