body {
  background-color: #f8f9fa;
  overflow: auto;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 40px;
}
.content-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
}
.logo-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: #fff;
}
.text-section {
  flex: 1;
  background: #212529;
  color: white;
  padding: 40px;
}
.text-section h2 {
  color: #bfffbd;
  font-weight: bold;
}
.text-green {
  color: #bfffbd;
}
.btn-custom {
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.btn-custom:hover {
  background: white;
  color: black;
}

.logo {
  animation: zoomEffect 2.5s ease-in-out;
  max-width: 90%;
}

.btn-animate {
  animation: zoomEffect 2.5s ease-in-out 2.5s;
  animation-fill-mode: both;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@media (max-width: 767px) {
  .content-box {
    flex-direction: column;
  }
  .logo-section {
    margin: 70px 0;
  }

  @keyframes zoomEffect {
    0% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
    }
    50% {
      transform: scale(1.2);
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
    }
    100% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
    }
  }
}
