
  
#temps h2 {
    text-align: center;
    color: #717e6a;
  }

  .estacio {
    display: flex;
    flex-wrap: wrap;
    background-color: #fffbf4;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    gap: 1rem;
  }
  
  .estacio img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
  }
  
  .estacio .info {
    flex: 1;
  }
  
  .estacio h3 {
    margin-top: 0;
    color: #717e6a;
  }
  
  .estacio ul {
    list-style-type: disc;
    margin-left: 1.5rem;
  }

  .estacio li {
    color: #717e6a;
  }
  
  /* Adaptació per mòbil */
  @media (max-width: 600px) {
    .estacio {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .estacio img {
      width: 100%;
      max-width: 300px;
    }
  
    .estacio .info {
      width: 100%;
    }
  }