* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.body-bage {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.image-body {
  flex-shrink: 0;
  max-width: 500px;
  width: 45%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.image-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.body-section {
  flex-grow: 1;
  max-width: 600px;
  padding-top: 15px;
}

.body-section h1 {
  color: var(--color-primary-dark, #0b2545);
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: right;
  border-right: 4px solid var(--color-secondary, #bd9d6c);
  padding-right: 15px;
}

.body-section p {
  line-height: 1.8;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-dark, #333);
  text-align: justify;
}
.no-scroll {
  overflow: hidden;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .body-bage {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
  }

  .image-body {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  .body-section {
    padding-top: 0;
    width: 100%;
    max-width: none;
  }

  .body-section h1 {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }
}
