/* ========================================
   CHI SIAMO - SEZIONE INTRO
   ======================================== */

.about-intro-section {
  margin-top:60px;
  padding:  100px 0 80px 0;
  background: #fff;
  flex-direction:row-reverse;
  
}

.about-intro-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.about-intro-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-intro-text strong {
  color: #B7061A;
  font-weight: 500;
}

.about-intro-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-intro-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background: #B7061A;
  z-index: -1;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   SEZIONE VALORI
   ======================================== */

.values-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center h2 {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-header-center p {
  font-size: 18px;
  color: #666;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}

.value-icon i {
  font-size: 36px;
  color: #B7061A;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* ========================================
   BACK BUTTON FISSO - MINIMAL
   Freccia semplice per tornare indietro
   ======================================== */

.back-to-previous {
  position: absolute;
  top: 100px; /* Sotto la navbar */
  left: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  padding: 0;
  transition: all 0.3s ease;
}

.back-to-previous i {
  font-size: 32px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.back-to-previous:hover i {
  color: #B7061A;
  transform: translateX(-5px);
}

/* Responsive Mobile */
/* NASCOSTA SU MOBILE */
@media screen and (max-width: 768px) {
  .back-to-previous {
    display: none; /* ← NASCOSTA */
  }
}



/* ========================================
   SEZIONE STATISTICHE
   ======================================== */

/* .stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
}

.stats-title {
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 60px;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 56px;
  font-weight: 500;
  color: #B7061A;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
} */



/* ========================================
   RESPONSIVE - CHI SIAMO
   ======================================== */

@media screen and (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .about-intro-content {
    grid-template-columns: 1fr;
  }
  
  .about-intro-image {
    height: 350px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .accreditation-item {
    flex-direction: column;
    text-align: center;
  }
  
  .accreditation-icon {
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .about-intro-text h2,
  .section-header-center h2,
  .stats-title {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 42px;
  }
}