body {
  overflow-x: hidden;
  min-height: 100vh;
}

.info-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.info-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.info-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  position: relative;
  z-index: 20;
}

.info-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out;
  margin-top: 200px;
}

.info-title-text {
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 700;
  font-size: 96px;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.1);
}

.info-butterfly-icon {
  width: 145px;
  height: 110px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  animation: butterfly-float 4s ease-in-out infinite;
}

@keyframes butterfly-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(-3deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(3deg);
  }
}

.info-description {
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #fff;
  max-width: 672px;
  line-height: 1.5;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 181, 130, 0.6);
  padding: 10px 40px;
  border: 1px solid #fff;
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s both;
  text-transform: lowercase;
}

.back-button:hover {
  background: #b8941f;
}

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

@media screen and (max-width: 1024px) {
  .info-section {
    min-height: auto;
    padding-bottom: 60px;
  }

  .info-content {
    gap: 100px;
  }

  .info-title {
    margin-top: 150px;
  }

  .info-title-text {
    font-size: 72px;
  }

  .info-butterfly-icon {
    width: 100px;
    height: 76px;
  }

  .info-description {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .info-section {
    min-height: auto;
    padding-bottom: 50px;
  }

  .info-container {
    padding: 0 20px;
  }

  .info-content {
    gap: 80px;
  }

  .info-title {
    margin-top: 120px;
    flex-direction: column;
    gap: 15px;
  }

  .info-title-text {
    font-size: 56px;
  }

  .info-butterfly-icon {
    width: 80px;
    height: 60px;
  }

  .info-description {
    font-size: 18px;
    max-width: 100%;
  }

  .back-button {
    font-size: 18px;
    padding: 8px 35px;
  }
}

@media screen and (max-width: 480px) {
  .info-section {
    min-height: auto;
    padding-bottom: 40px;
  }

  .info-container {
    padding: 0 15px;
  }

  .info-content {
    gap: 60px;
  }

  .info-title {
    margin-top: 100px;
  }

  .info-title-text {
    font-size: 40px;
  }

  .info-butterfly-icon {
    width: 60px;
    height: 45px;
  }

  .info-description {
    font-size: 16px;
  }

  .back-button {
    font-size: 16px;
    padding: 6px 30px;
  }
}
