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

.about-intro-section {
  padding: 0px 0 80px 0;
  background: #fff;
}

.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;
}

/* IMMAGINE - Fix per dimensioni corrette */
.sezione-immagine-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

/* Ombra rossa dietro */
.red-shadow {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: #B7061A;
  z-index: 1;
}

/* Container immagine */
.sezione-immagine {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* IMMAGINE - FIX CRITICO */
.about-intro-section .sezione-immagine img {
  width: 100%;
  height: 100%; /* NON superiore a 100% */
  object-fit: cover;
  display: block; /* Rimuove spazi bianchi sotto l'immagine */
}

/* ========================================
   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: rgba(183, 6, 26, 0.05);
  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;
}

/* ========================================
   SEZIONE ACCREDITAMENTI
   ======================================== */

.accreditations-section {
  padding: 80px 0;
  background: #fff;
}

.accreditations-list {
  max-width: 900px;
  margin: 0 auto;
}

.accreditation-item {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: #f9f9f9;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.accreditation-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accreditation-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B7061A;
  border-radius: 50%;
}

.accreditation-icon i {
  font-size: 28px;
  color: #fff;
}

.accreditation-content h3 {
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 10px;
}

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

.accreditation-content strong {
  color: #B7061A;
}

/* ========================================
   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);
}

/* ========================================
   SEZIONE APPROCCIO
   ======================================== */

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

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

.approach-step {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 48px;
  font-weight: 500;
  color: rgba(183, 6, 26, 0.1);
  margin-bottom: 20px;
}

.approach-step h3 {
  font-size: 24px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 15px;
}

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

/* ========================================
   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;
  }
  
  .sezione-immagine-wrapper {
    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;
  }
  
  .sezione-immagine-wrapper {
    height: 300px;
  }
  
  .red-shadow {
    top: 10px;
    left: 10px;
  }
}