.articulo8 {
    max-width: 1200px;
    margin: 40px auto;
    
    text-align: left;
    padding-top: 60px; /* Ajusta según la altura del menú */

  }
  
  .articulo8 h1,
  .articulo8 h2 {
    text-align: center;
    color: var(--green-dark);
    margin-bottom: 20px;
  }
  
  .acordeon .item {
    margin-bottom: 15px;
    border: 1px solid var(--green-dark);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
  }
  
  .acordeon .titulo {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: var(--green-dark);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .acordeon .titulo:hover {
    background: var(--green-light);
  }
  
  .acordeon .contenido {
    display: none;
    padding: 20px;
    background: var(--bg-light);
  }
  
  .acordeon .contenido ul {
    list-style: none;
    padding-left: 0;
  }
  
  .acordeon .contenido ul li {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .acordeon .contenido ul li a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: bold;
  }
  
  .acordeon .contenido ul li a:hover {
    text-decoration: underline;
  }
  