:root {
  --color-primary: #0055aa;
  --color-primary-dark: #0b2545;
  --color-secondary: #bd9d6c;
  --color-text-dark: #333;
  --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;
  flex-direction: column;
  align-items: center;
  margin: 80px auto;
  max-width: 900px;
  padding: 0 20px;
}

.body-section {
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
}

.body-section h1 {
  color: var(--color-primary-dark, #0b2545);
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.body-section h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 300px;
  height: 4px;
  background-color: var(--color-secondary, #bd9d6c);
  border-radius: 2px;
}

.body-section h3 {
  margin: 20px 0;
  text-align: center;
  width: 100%;
}

.body-section h3 a {
  color: #fff;
  background-color: var(--color-primary, #0055aa);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
}

.body-section h3 a:hover {
  color: var(--color-primary-dark, #0b2545);
  background-color: var(--color-secondary, #bd9d6c);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: #fff;
}

.body-section h3 a i {
  margin-right: 8px;
  font-size: 1.2em;
}

.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);
}
.no-scroll {
  overflow: hidden;
}
