.Explain-Container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 4rem;
  }

  .Explain-Section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
  }

  .Explain-Section.right {
    justify-content: flex-end;
    animation-delay: 0.4s;
  }

  .box-LI-CBT{
    background: linear-gradient(135deg, #93C572, #93C572);
    color: #fff;
    padding: 2rem;
    width: 420px;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 160px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .box-NLP {
    background: linear-gradient(135deg, #57bd70, #57bd70);
    color: #fff;
    padding: 2rem;
    width: 420px;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 160px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .text-block {
    font-size: 1.6rem;
    line-height: 2.2rem;
    max-width: 600px;
    flex: 1;
    color: #333;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .Explain-Section {
      flex-direction: column;
      align-items: center;
    }

    .box-LI-CBT,.box-NLP,
    .text-block {
      width: 100%;
    }
  }


