.descargar-reglamento {
        margin-top: 20px;
    }

    .btn-reglamento {
        display: inline-block;
        padding: 12px 20px;
        background-color: #225D00;
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }

    .btn-reglamento:hover {
        background-color: #1b4a00;
    }

  .noticias-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .section-title {
    text-align: center;
    font-size: 28px;
    margin-top: 15px;
    color: #225D00;
  }

  .mensaje-bienvenida {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
  }

  .mensaje-bienvenida h2 {
    font-size: 24px;
    color: #225D00;
    margin-bottom: 20px;
  }

  .mensaje-bienvenida p {
    font-size: 16px;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px auto;
  }

  .valores-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: #225D00;
    font-weight: bold;
  }

  .noticias-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .noticia-card {
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    border-left: 5px solid #225D00;
    padding: 20px;
    width: 80%;
    margin-left:9%;
    /* max-width: 320px; */
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
  }

  .noticia-card:hover {
    transform: translateY(-5px);
  }

  .noticia-titulo {
    font-size: 18px;
    color: #225D00;
    margin-bottom: 10px;
  }

  .noticia-fecha {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
  }

  .noticia-resumen {
    font-size: 15px;
    color: #444;
  }

  @media (max-width: 768px) {
    .noticias-grid {
      flex-direction: column;
      align-items: center;
    }

    .mensaje-bienvenida {
      text-align: left;
    }

    .valores-lista {
      justify-content: flex-start;
    }
  }
  .valores-section {
    background-color: #f4fdf4;
    padding: 30px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .valores-title {
    text-align: center;
    font-size: 32px;
    color: #225D00;
    margin-bottom: 10px;
  }

  .valores-intro {
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #444;
  }

  .valores-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .valor-card {
    background-color: white;
    border: 2px solid #dcefdc;
    padding: 25px;
    border-radius: 8px;
    width: 280px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  .valor-card:hover {
    transform: translateY(-5px);
  }

  .valor-card i {
    font-size: 36px;
    color: #225D00;
    margin-bottom: 15px;
  }

  .valor-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #225D00;
  }

  .valor-card p {
    font-size: 14px;
    color: #444;
  }

  @media (max-width: 768px) {
    .valores-grid {
      flex-direction: column;
      align-items: center;
    }

    .valor-card {
      width: 90%;
    }
  }