html {
  scroll-behavior: smooth;
}
.full-width-line {
  width: 100vw; /* viewport width, NON del contenitore */
  height: 3px;
  background: #e4002d;
  margin: 40px 0;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
.activity-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.activity-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.activity-row.reverse {
  flex-direction: row-reverse;
}

.activity-image {
  flex: 1 1 300px;
  max-width: 100%;
  height: 400px; /* Altezza fissa per tutte le immagini */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-text {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.activity-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #0f3443;
  font-size: 1.6rem;
}

.activity-text-content {
  max-width: 600px;
}

.activity-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  margin-top: 1rem;
  line-height: 1.6;
  text-align: justify;
}
