
    .container-program {
      display: flex;
      border: 1px solid #ccc;
      flex-wrap: wrap;
    }

    .content {
      padding: 20px;
      flex: 1;
    }

    .content p {
      line-height: 1.6;
    }

    .content a {
      color: #007d9c;
      text-decoration: underline;
      font-weight: bold;
    }

    .actions {
      margin-top: 20px;
      border-top: 2px solid #007d9c;
      padding-top: 10px;
    }

    .actions h4 {
      margin-bottom: 10px;
      color: #007d9c;
    }

    .actions ol {
      padding-left: 20px;
    }

    .actions li {
      margin-bottom: 8px;
      font-weight: bold;
    }

    /* --- Responsive styles --- */
    @media (max-width: 768px) {
      .container-program {
        flex-direction: column;
        max-width:95%;
      }

      .sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
      }

      .sidebar h3 {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 16px;
      }

      .sidebar img {
        width: 40px;
      }

      .content {
        padding: 15px;
      }

      .actions ol {
        padding-left: 16px;
      }

      .actions li {
        font-size: 14px;
      }
    }

    .navbar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
      background-color: #f0f0f0;
    }

    .nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 80px;
    }

    .nav-icon {
      background-color: #2ec0cf;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
    }

    .nav-icon img {
      width: 30px;
      height: 30px;
      filter: brightness(0) invert(1);
    }

    .nav-label {
      font-size: 13px;
      text-align: center;
      color: #333;
    }
