.transparency-section {
    background-color: #f6f0e3;
    padding: 4rem 2rem;
    font-family: 'Inter', sans-serif;
    color: #111;
  }

  .header-spacer {
    height: 50px;
  }

  .contributi-spacer {
    height: 20px;
  }

  .section-title-trasparenza {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .cda-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
  }

  .cda-member {
    background-color: #fffaf0;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 300px;
  }

  .cda-member h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e06a87;
  }

  .cda-member p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .cda-member a {
    color: #e06a87;
    text-decoration: none;
    font-weight: bold;
  }

  .contributions-section,
  .revenue-section {
    max-width: 800px;
    margin: 6rem auto;
  }

  .contributions-section h3,
  .revenue-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e06a87;
  }

  .contributions-section ul,
  .revenue-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }

  .contributions-section li,
  .revenue-section li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  @media screen and (max-width: 768px) {

.header-spacer {
    height: 50px; /* o 70px, a seconda dell'altezza effettiva dell'header */
  }

    .transparency-section {
      padding: 2rem 1rem;
    }
  
    .cda-section {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
  
    .cda-member {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  
    .contributions-section,
    .revenue-section {
      padding: 0 1rem;
      margin: 4rem auto;
    }
  
    .section-title-trasparenza {
      font-size: 1.6rem;
      padding: 0 1rem;
    }
  }