:root {
      --orange-l: #eedc50;
      --orange-m: #f1b72a;
      --orange: #f7921a;
      --gray: #d1d3d4;
      --dark: #333;
    }

    .necs-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      font-family: 'Morion', Arial, sans-serif;
      background: #fff;
      color: #222;
    }

    .necs-section {
      border-top: 1px solid var(--gray);
      padding-top: 2rem;
    }

    .necs-question {
      font-weight: bold;
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }

    .necs-bars {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .necs-bar {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 80px;
    }

    .necs-bar-fill {
      width: 100%;
      background-color: var(--orange-m);
      margin-bottom: 0.5rem;
      height: 0;
      transition: height 0.5s ease;
    }

    .necs-bar.orange .necs-bar-fill {
      background-color: var(--orange);
    }

    .necs-bar.orange-l .necs-bar-fill {
      background-color: var(--orange-l);
    }

    .necs-bar.gray .necs-bar-fill {
      background-color: #888;
    }

    .necs-bar-label {
      font-size: 0.9rem;
    }

    .necs-institutions,
    .necs-services {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .necs-institution,
    .necs-service {
      width: 140px;
      font-size: 0.9rem;
      text-align: center;
    }

    .necs-value {
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--orange-m);
    }

    .illustrated-by {
        text-align: center;
        font-size: 1rem;
        color: #444;
        margin-top: 40px;
        padding: 20px 0;
        border-top: 1px solid #ccc;
    }

    @media (max-width: 600px) {
      .necs-bar {
        width: 45%;
      }

      .necs-institution,
      .necs-service {
        width: 48%;
      }
    }