.energy-section {
  margin-top: 91px;
  margin-bottom: 138px;
  background: #fff;
}

.energy-container {
  max-width: 1808px;
  gap: 40px;
}

.energy-text {
  flex: 1;
  max-width: 100%;
  margin-right: 83px;
}

.energy-text h2 {
  font-size: 57px;
  font-weight: 700;
  line-height: 1.3;
  color: #006C7B;
  margin-bottom: 39px;
  letter-spacing: -0.5px;
}

.energy-text p {
  font-size: 25px;
  line-height: 30px;
  color: #006C7B;
  margin-bottom: 39px;
}

.energy-container .btn-hero {
  background: #004D58;
  color: #fff;
}

.energy-image-wrapper {
  position: relative;
  width: 981px;
  height: 774px;
}

.energy-image {
  width: 100%;
  height: 100%;
}

.energy-image img {
  border-radius: 12px;
}

.slider-arrows {
  position: absolute;
  bottom: -40px;
  right: 0;
  display: flex;
  gap: 15px;
}

.slider-arrows .arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-arrows .arrow-right img {
  transform: scaleX(-1);
}
.slider-arrows .arrow:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}
.energy-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
}

.energy-image .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease;
  will-change: opacity;
}

.energy-image .slide.is-active {
  opacity: 1;
  z-index: 1;
}

.energy-image .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .energy-container {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 50px;
  }

  .energy-text {
    margin-right: 0;
    max-width: 100%;
  }

  .energy-image-wrapper {
    width: 100%;
    max-width: 981px;
    height: auto;
    aspect-ratio: 981 / 774;
  }

  .energy-image, .energy-image img {
    width: 100%;
    height: 100%;
  }

  .slider-arrows {
    bottom: -28px;
    right: 0;
    gap: 14px;
  }

  .energy-text h2 {
    font-size: 44px;
    line-height: 1.25;
  }

  .energy-text p {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 768px) {
  .energy-container {
    padding: 0 16px;
    gap: 60px;
  }

  .energy-text h2 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .energy-text p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .energy-image img {
    border-radius: 10px;
  }
}

@media (min-width: 800px) and (max-width: 1600px) {
  .energy-container {
    max-width: 1360px;
    gap: 48px;
    padding-inline: var(--pad-x);

  }

  .energy-text {
    flex: 0 0 520px;
    max-width: 520px;
    margin-right: 0;
  }

  .energy-text h2 {
    font-size: 42px;
    line-height: 1.22;
    margin-bottom: 24px;
  }

  .energy-text p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 24px;
  }

  .energy-image-wrapper {
    width: 620px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 981 / 774;
  }

  .energy-image, .energy-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  .slider-arrows {
    bottom: -24px;
    gap: 12px;
  }
}