.section-container {
    padding: 50px 0;
    /* background-color: #f9f9f9; */
  }
  
  .section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
  }
  
  .section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin: 0 10px;
  }
  
  .valores-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
  }
  
  .valor-item {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin: 10px 0;
  }
  
  .section-box {
    margin: 30px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: url(../images/cards-mision.jpg);
    background-repeat: repeat;
  
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .section-image {
    max-width: 150px;
    border-radius: 8px;
  }
  
  .text-content {
    flex: 1;
    padding: 0 20px;
  }
  
  /* Animaciones */
  .animate-fade-in {
    animation: fadeIn 1.5s ease-in-out forwards;
    opacity: 0;
  }
  
  .animate-slide-up {
    animation: slideUp 1.5s ease-in-out forwards;
    opacity: 0;
  }
  
  .animate-slide-left {
    animation: slideLeft 1.5s ease-in-out forwards;
    opacity: 0;
  }
  
  .animate-slide-right {
    animation: slideRight 1.5s ease-in-out forwards;
    opacity: 0;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }