body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('img/sfondo4.jpg') no-repeat center center / cover; /* <-- Cambia qui */
  padding-top: 10%;
}

.about-content {
  padding: 4rem 10%;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 3rem;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-section .text {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 2rem;
  border-radius: 12px;
  font-size: 1.2rem;
}

.about-section .image {
  flex: 1;
}

.about-section .image img {
  width: 100%;
  border-radius: 12px;
  
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column !important;
    text-align: center;
  }

  .about-section .text,
  .about-section .image {
    width: 100%;
  }

  .about-content {
    padding: 2rem 1rem;
  }
}
