body {
  font-family: Arial, sans-serif;
  background: url('img/sfondo.jpg') no-repeat center center / cover;
  padding-top:15%;
}



/* Sezioni alternate */
/* .text-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 5%;
  padding-left: 10%;
  padding-right: 10%;
  margin-bottom: 3%;
  
}

.text-section.left .text-box {
  margin-right: auto;
}

.text-section.right .text-box {
  margin-left: auto;
}

.text-box {
  font-size: larger;
  max-width: 30%;
  padding: 2%;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.7);
} */
.about-content {
  padding: 4rem 10%;
}

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

.about-section.right {
  margin-right: auto;
}

.about-section.left {
  margin-left: auto;
}

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


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

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

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

.cta-link {
  display: inline-block;
  font-weight: bold;
  color: #005bac;
  text-decoration: none;
}

