.gestion-box {
    display: flex;
    flex-wrap: wrap;
    border-radius: 40px;
    overflow: hidden;
    background-color: #120B2A;
    color: white;
    margin: 40px auto;
    max-width: 1200px;
  }
  
  .imagen-gestion {
    flex: 1 1 50%;
  }
  
  .imagen-gestion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .contenido-gestion {
    flex: 1 1 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contenido-gestion h2 {
    font-size: 28px;
    font-weight: bold;
  }
  
  .contenido-gestion p {
    margin: 20px 0;
    font-size: 18px;
  }
  
  .contenido-gestion button {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  
  .contenido-gestion button:hover {
    background-color: #222;
  }
  
  @media screen and (max-width: 768px) {
    .gestion-box {
      flex-direction: column;
      border-radius: 0;
    }
  
    .imagen-gestion,
    .contenido-gestion {
      flex: 1 1 100%;
    }
  }
  .impacto-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .impacto-box {
    background-color: #4b0082;
    color: #fff;
    padding: 2rem;
    border-radius: 2rem;
    max-width: 1000px;
    width: 100%;
    text-align: center;
  }

  .impacto-box h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .impacto-box p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .impacto-box {
      padding: 1.5rem;
    }
    .impacto-box h2 {
      font-size: 1.4rem;
    }
    .impacto-box p {
      font-size: 1rem;
    }
  }